UNPKG

673 BTypeScriptView Raw
1/** true if the environment has proper BigInt support */
2export declare const hasBigInt: boolean;
3/** true if the environment is CJS */
4export declare const hasCjs: boolean;
5/** true if the environment has __dirname available */
6export declare const hasDirname: boolean;
7/** true if the environment is ESM */
8export declare const hasEsm: boolean;
9/** true if the environment has WebAssembly available */
10export declare const hasWasm: boolean;
11/** true if the environment has support for Buffer (typically Node.js) */
12export declare const hasBuffer: boolean;
13/** true if the environment has process available (typically Node.js) */
14export declare const hasProcess: boolean;