UNPKG

@ray-js/smart-ui-typings

Version:

@ray-js/smart-ui 智能小程序 UI 框架的类型声明文件

12 lines (11 loc) 260 B
export interface ComponentBase { /** * 标识符 */ id?: string; /** * css 类名 */ className?: string; } export type VantComponent<Props = {}, Events = {}, EC = {}, Slot = {}> = ComponentBase & Props & Events & EC & Slot;