lanan-ui-go-view/types/global.d.ts

17 lines
306 B
TypeScript
Raw Permalink Normal View History

2024-08-08 19:03:18 +08:00
interface Window {
$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>