13 lines
205 B
TypeScript
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;
|
|
}
|