Files
Account/src/global.d.ts
2025-08-13 16:32:29 +03:30

13 lines
205 B
TypeScript

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