2026-02-05 12:47:24 +08:00

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>;
}