go-view/types/global.d.ts

8 lines
131 B
TypeScript
Raw Normal View History

2021-12-10 14:11:49 +08:00
interface Window {
2021-12-22 15:31:20 +08:00
$loading: any
$message: any
$dialog: any
$t: any
2021-12-10 14:11:49 +08:00
}
2022-01-14 16:17:14 +08:00
declare type Recordable<T = any> = Record<string, T>