1
0
mirror of https://gitee.com/dromara/go-view.git synced 2025-04-27 03:46:34 +08:00
2022-10-12 11:30:54 +08:00

13 lines
225 B
TypeScript

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