3 changed files with 45 additions and 4 deletions
@ -0,0 +1,34 @@
|
||||
declare module '*.avif' { |
||||
const path: string; |
||||
export default path; |
||||
} |
||||
|
||||
declare module '*.gif' { |
||||
const path: string; |
||||
export default path; |
||||
} |
||||
|
||||
declare module '*.jpg' { |
||||
const path: string; |
||||
export default path; |
||||
} |
||||
|
||||
declare module '*.jpg' { |
||||
const path: string; |
||||
export default path; |
||||
} |
||||
|
||||
declare module '*.png' { |
||||
const path: string; |
||||
export default path; |
||||
} |
||||
|
||||
declare module '*.svg' { |
||||
const path: string; |
||||
export default path; |
||||
} |
||||
|
||||
declare module '*.webp' { |
||||
const path: string; |
||||
export default path; |
||||
} |
||||
Loading…
Reference in new issue