19 lines
333 B
TypeScript
19 lines
333 B
TypeScript
export {};
|
|
|
|
interface Window {
|
|
existLoading: boolean;
|
|
unique: number;
|
|
tokenRefreshing: boolean;
|
|
requests: <T = any>() => [];
|
|
eventSource: EventSource;
|
|
}
|
|
|
|
declare module '*.json';
|
|
declare module 'lodash-es';
|
|
declare module 'uuid';
|
|
declare module 'dayjs';
|
|
|
|
declare global {
|
|
type anyObj = Record<string, any>;
|
|
}
|