mirror of
https://gitee.com/dromara/go-view.git
synced 2024-12-04 20:59:26 +08:00
13 lines
225 B
TypeScript
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>
|