mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-01-24 01:40:24 +00:00
821f665e78
More cleanup for #253 - Remove window.dataExplorerPlatform - Remove explorer factories
14 lines
283 B
TypeScript
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;
|
|
}
|
|
}
|