wherearewe
Version:
Detect the current environment
13 lines • 427 B
TypeScript
export const isEnvWithDom: boolean;
export const isElectron: boolean;
/**
* Detects browser main thread **NOT** web worker or service worker
*/
export const isBrowser: boolean;
export const isElectronMain: boolean;
export const isElectronRenderer: boolean;
export const isNode: boolean;
export const isWebWorker: boolean;
export const isTest: boolean;
export const isReactNative: boolean;
//# sourceMappingURL=index.d.ts.map