Files
cosmos-explorer/src/global.d.ts
2021-01-20 09:15:01 -06:00

14 lines
270 B
TypeScript

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