global.d.ts 357 B

1234567891011121314151617
  1. interface Window {
  2. _AMapSecurityConfig: { securityJsCode: string };
  3. $loading: any
  4. $message: any
  5. $dialog: any
  6. // 语言
  7. $t: any
  8. $vue: any
  9. // 键盘按键记录
  10. $KeyboardActive?: { [T: string]: boolean }
  11. onKeySpacePressHold?: Function
  12. // 编辑 JSON 的存储对象
  13. opener: any
  14. }
  15. declare type Recordable<T = any> = Record<string, T>