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;
|
|
|
|
}
|
|
|
|
|
|
|
|
declare module '*.mp4' {
|
|
|
|
const src: string;
|
|
|
|
export default src;
|
|
|
|
}
|