2024-11-03 11:44:23 +03:00
|
|
|
declare interface NodeModule {
|
|
|
|
hot?: {
|
|
|
|
accept: (path: string, callback: () => void) => void;
|
|
|
|
};
|
|
|
|
}
|
2024-11-10 02:45:54 +03:00
|
|
|
|
|
|
|
declare module "*.svg" {
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
|
|
const value: any;
|
|
|
|
export = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
declare module "*.webp" {
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
|
|
const value: any;
|
|
|
|
export = value;
|
|
|
|
}
|
|
|
|
|
2024-11-10 11:35:39 +03:00
|
|
|
declare const __webpack_public_path__: string;
|