forked from fanruan/fineui
Teller
5 years ago
3 changed files with 21 additions and 0 deletions
@ -0,0 +1,12 @@
|
||||
import { _Widget } from "../core/widget"; |
||||
|
||||
export interface _Pane extends _Widget { |
||||
_assertTip: (..._args: any[]) => void; |
||||
loading: (..._args: any[]) => void; |
||||
loaded: (..._args: any[]) => void; |
||||
check: (..._args: any[]) => void; |
||||
} |
||||
|
||||
export interface _PaneStatic { |
||||
EVENT_LOADED: "EVENT_LOADED"; |
||||
} |
@ -0,0 +1,5 @@
|
||||
import { _Pane } from "../../base/pane"; |
||||
|
||||
export interface _LoadingPane extends _Pane { |
||||
__loaded: (...args: any[]) => void; |
||||
} |
Loading…
Reference in new issue