You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
357 B
17 lines
357 B
interface Window { |
|
_AMapSecurityConfig: { securityJsCode: string }; |
|
$loading: any |
|
$message: any |
|
$dialog: any |
|
// 语言 |
|
$t: any |
|
$vue: any |
|
// 键盘按键记录 |
|
$KeyboardActive?: { [T: string]: boolean } |
|
onKeySpacePressHold?: Function |
|
|
|
// 编辑 JSON 的存储对象 |
|
opener: any |
|
} |
|
|
|
declare type Recordable<T = any> = Record<string, T>
|
|
|