Remove our copy of image.d.ts as tsconfig already uses upstream's

pull/62/head
Claire 2023-05-10 00:00:28 +02:00
parent 96e99e2170
commit f371464639
1 changed files with 0 additions and 35 deletions

View File

@ -1,35 +0,0 @@
/* eslint-disable import/no-default-export */
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;
}