1 |
- {"version":3,"sources":["../src/common/common.ts"],"names":[],"mappings":"","file":"common.js","sourcesContent":["export type Classes = Array<string>;\n\nexport interface Styles {\n [css: string]: string | number;\n}\n/** 通用全局变量 */\n\nexport type OptionData = {\n label?: string;\n value?: string | number;\n} & { [key: string]: any };\n\nexport type TreeOptionData = {\n children?: Array<TreeOptionData>;\n} & OptionData;\n\nexport type SizeEnum = 'small' | 'medium' | 'large';\n\nexport type HorizontalAlignEnum = 'left' | 'center' | 'right';\n\nexport type VerticalAlignEnum = 'top' | 'middle' | 'bottom';\n\nexport type ClassName = { [className: string]: any } | ClassName[] | string;\n\nexport type CSSSelector = string;\n\nexport interface KeysType {\n value?: string;\n label?: string;\n}\n\nexport interface HTMLElementAttributes {\n [css: string]: string;\n}\n"]}
|