removing unused imports, creating a file for global decelaration

This commit is contained in:
مهرزاد قدرتی
2025-08-13 16:32:29 +03:30
parent 0a65e5f25c
commit 20da3f980e
21 changed files with 66 additions and 91 deletions

12
src/global.d.ts vendored Normal file
View File

@@ -0,0 +1,12 @@
import React from 'react';
declare global {
namespace JSX {
interface Element extends React.ReactElement<any, any> {}
}
interface Window {
google: typeof google;
}
const google: any;
}