dry-wash-pl/types.d.ts
RustamRu 10854c836b
All checks were successful
it-academy/dry-wash-pl/pipeline/pr-main This commit looks good
it-academy/dry-wash-pl/pipeline/head This commit looks good
feat: move demo video to remote assets (#7)
2024-11-10 11:35:39 +03:00

19 lines
416 B
TypeScript

declare interface NodeModule {
hot?: {
accept: (path: string, callback: () => void) => void;
};
}
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 const __webpack_public_path__: string;