chore(client): fix type errors

This commit is contained in:
Elian Doran
2025-07-24 22:26:29 +03:00
parent 4f99db0c90
commit 90accfcc48
2 changed files with 7 additions and 1 deletions

View File

@@ -3,6 +3,11 @@ declare module "*.png" {
export default path;
}
declare module "*.json" {
var content: any;
export default content;
}
declare module "*?url" {
var path: string;
export default path;