UNPKG

@ray-js/smart-ui

Version:

轻量、可靠的智能小程序 UI 组件库

17 lines (16 loc) 356 B
/// <reference types="react" /> export interface ComponentBase { /** * 标识符 */ id?: string; /** * css 类名 */ className?: string; /** * 样式 */ style?: React.CSSProperties; } export type SmartComponent<Props = {}, Events = {}, EC = {}, Slot = {}> = ComponentBase & Props & Events & EC & Slot;