Files
cosmos-explorer/src/global.d.ts
2021-02-22 14:43:58 -06:00

13 lines
246 B
TypeScript

import { AuthType } from "./AuthType";
import Explorer from "./Explorer/Explorer";
declare global {
interface Window {
dataExplorer: Explorer;
__REACT_DEVTOOLS_GLOBAL_HOOK__: any;
$: any;
jQuery: any;
gitSha: string;
}
}