mirror of
https://github.com/duckietm/Nitro-V3.git
synced 2026-06-19 15:06:20 +00:00
16 lines
318 B
TypeScript
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>;
|
|
}
|