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.
17 lines
319 B
17 lines
319 B
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; |
|
}
|
|
|