8 lines
131 B
TypeScript
8 lines
131 B
TypeScript
interface Window {
|
|
$loading: any
|
|
$message: any
|
|
$dialog: any
|
|
$t: any
|
|
}
|
|
declare type Recordable<T = any> = Record<string, T>
|