12345678910111213141516171819202122232425262728293031323334353637383940 |
- interface Window {
- existLoading: boolean
- lazy: NodeJS.Timer
- unique: number
- tokenRefreshing: boolean
- requests: Function[]
- eventSource: EventSource
- }
- interface InputData {
-
- title?: string
-
- content?: any
-
- tip?: string
-
- childrenAttr?: anyObj
-
- level?: number
- }
- interface anyObj {
- [key: string]: any
- }
- interface TableDefaultData<T = any> {
- list: T
- remark: string
- total: number
- }
- interface ApiResponse<T = any> {
- code: number
- data: T
- msg: string
- time: number
- }
- interface ApiPromise<T = any> extends Promise<ApiResponse<T>> {}
|