@wfrog/vc
Version:
`自用` 的基于 `element-plus` 二次封装的 `vue3` 组件库。追求在业务场景中,尽可能使用更少的代码量来实现需求。 因此在组件封装上,以 `方便` 为主,打包仅 `esm` 模式。
21 lines (20 loc) • 508 B
TypeScript
declare namespace IGlobal {
type BaseType = string | number | boolean
type IconType = 'el' | 'svg' | 'awesome'
type ImageFit = 'fill' | 'contain' | 'cover' | 'none' | 'scale-down'
}
interface Window {
ElementPlusComponents: {
isAwesomeIconLock?: boolean
isSVGIconLock?: boolean
}
tinyMCE: unknown
BMap: any
h_utils: {
cdn: {
name: 'jsdelivr' | 'defaultBase' | 'localCDN'
path: string
host: string
}
};
}