add declaration.d.ts for github actions

This commit is contained in:
MarconLP 2023-07-16 21:00:40 +02:00
parent 223a8ea1ad
commit a912d78749
No known key found for this signature in database
GPG key ID: F4CAFFDFA3451D5E

9
src/declarations.d.ts vendored Normal file
View file

@ -0,0 +1,9 @@
declare module "*.png" {
const value: any;
export default value;
}
declare module "*.jpg" {
const value: any;
export default value;
}