From 76ac5f780fe5ed299e9c8bcadf77525cbbb3c21c Mon Sep 17 00:00:00 2001 From: Arnei Date: Wed, 10 Jul 2024 11:46:17 +0200 Subject: [PATCH] Remove png ts definition file It's going unused and we don't need it anymore anyway. --- src/import-png.d.ts | 6 ------ 1 file changed, 6 deletions(-) delete mode 100644 src/import-png.d.ts diff --git a/src/import-png.d.ts b/src/import-png.d.ts deleted file mode 100644 index 15aaa0dae..000000000 --- a/src/import-png.d.ts +++ /dev/null @@ -1,6 +0,0 @@ -// Must declare module to be able to serve static images -declare module "*.png" { - // eslint-disable-next-line @typescript-eslint/no-explicit-any - const value: any; - export default value; -}