加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
banner.plugin.d.ts 1.31 KB
一键复制 编辑 原始数据 按行查看 历史
fisher 提交于 2023-03-01 13:55 . fix: 修复typescript类型错误
import type { NamedColorStyles } from "./colors"
import type { Logsets } from "./"
import type { DeepRequired } from "ts-essentials"
export interface BannerPluginOptions {
indent? : string // 横幅缩进
border? : {
style? : NamedColorStyles // 边框颜色
width? : 0 | 1 | 2 // 边框宽度,0-不显示,1-单线框,2-双线框
},
title? : {
align? : 'left' | 'center' | 'right' // 标题对齐方式
style? : NamedColorStyles // 标题颜色
wrapper? : string // 原本是使用☆ ☆ ☆标题包裹符号比较好看,但是
},
align? : 'left' | 'center' | 'right' // 横幅行默认对齐方式,默认居中
paddingLeft? : number // 左右空白宽度
paddingRight? : number
paddingTop? : number // 顶部空白行
paddingBottom?: number
}
export interface Banner{
add(text:string,vars?:any[] | Record<string>,options?:BannerPluginOptions):Banner
render():void
}
export declare const BannerPlugin: {
(logsets:Logsets,options:DeepRequired<BannerPluginOptions>):Banner
}
export default BannerPlugin
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化