ipfs-utils
Version:
Package to aggregate shared logic and dependencies for the IPFS ecosystem
11 lines • 648 B
TypeScript
declare const IS_TEST: boolean;
declare const IS_ELECTRON: boolean;
declare const IS_ELECTRON_MAIN: boolean;
declare const IS_ELECTRON_RENDERER: boolean;
declare const IS_NODE: boolean;
declare const IS_BROWSER: boolean;
declare const IS_WEBWORKER: boolean;
declare const IS_ENV_WITH_DOM: boolean;
declare const IS_REACT_NATIVE: boolean;
export { IS_TEST as isTest, IS_ELECTRON as isElectron, IS_ELECTRON_MAIN as isElectronMain, IS_ELECTRON_RENDERER as isElectronRenderer, IS_NODE as isNode, IS_BROWSER as isBrowser, IS_WEBWORKER as isWebWorker, IS_ENV_WITH_DOM as isEnvWithDom, IS_REACT_NATIVE as isReactNative };
//# sourceMappingURL=env.d.ts.map