You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
279 B
16 lines
279 B
6 years ago
|
export * from './fineui';
|
||
|
export interface WidgetType{
|
||
|
_store?: Function;
|
||
|
watch?: object;
|
||
|
render: Function;
|
||
|
mounted?: Function;
|
||
|
}
|
||
|
|
||
|
export interface ModelType{
|
||
|
context?: string[];
|
||
|
childContext?: string[];
|
||
|
state?: Function;
|
||
|
computed?: object;
|
||
|
actions?: object;
|
||
|
}
|