Files
Nitro-V3/src/react-app-env.d.ts
T
2026-04-21 11:13:32 +02:00

16 lines
318 B
TypeScript

/// <reference types="react-scripts" />
declare module '*.png' {
const src: string;
export default src;
}
declare module '*.gif' {
const src: string;
export default src;
}
interface ImportMeta
{
glob: (pattern: string, options?: { eager?: boolean; import?: string }) => Record<string, string>;
}