19 lines
395 B
TypeScript
19 lines
395 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;
|
|
gitSha: string;
|
|
}
|
|
}
|