cosmos-explorer/src/global.d.ts
Steve Faulkner 821f665e78
Remove window.dataExplorerPlatform (#279)
More cleanup for #253 
- Remove window.dataExplorerPlatform
- Remove explorer factories
2020-10-15 03:25:13 +00:00

14 lines
283 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;
}
}