mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-03-05 01:18:33 +00:00
24 lines
479 B
TypeScript
24 lines
479 B
TypeScript
import Explorer from "./Explorer/Explorer";
|
|
|
|
declare global {
|
|
interface Window {
|
|
/**
|
|
* @deprecated
|
|
* DO NOT take new usage of window.dataExplorer. If you must use Explorer, find it directly.
|
|
* */
|
|
dataExplorer: Explorer;
|
|
__REACT_DEVTOOLS_GLOBAL_HOOK__: any;
|
|
/**
|
|
* @deprecated
|
|
* No new usage of jQuery ($)
|
|
* */
|
|
$: any;
|
|
/**
|
|
* @deprecated
|
|
* No new usage of jQuery
|
|
* */
|
|
jQuery: any;
|
|
gitSha: string;
|
|
}
|
|
}
|