go-view/types/global.d.ts
2022-06-22 14:31:53 +08:00

12 lines
211 B
TypeScript

interface Window {
$loading: any
$message: any
$dialog: any
// 语言
$t: any
$vue: any
// 键盘按键记录
$KeyboardActive?: Set<string>
}
declare type Recordable<T = any> = Record<string, T>