export * from './fineui'; export interface WidgetType{ [key: string]: any; _store?: Function; watch?: object; props?: object; render: Function; mounted?: Function; } export interface ModelType{ context?: string[]; childContext?: string[]; state?: Function; computed?: object; actions?: object; }