2020-05-26 03:30:55 +01:00
|
|
|
import { AuthType } from "./AuthType";
|
2020-07-20 18:59:40 +01:00
|
|
|
import Explorer from "./Explorer/Explorer";
|
2020-05-26 03:30:55 +01:00
|
|
|
|
|
|
|
declare global {
|
|
|
|
interface Window {
|
|
|
|
authType: AuthType;
|
|
|
|
dataExplorer: Explorer;
|
|
|
|
__REACT_DEVTOOLS_GLOBAL_HOOK__: any;
|
|
|
|
$: any;
|
|
|
|
jQuery: any;
|
|
|
|
gitSha: string;
|
|
|
|
}
|
|
|
|
}
|