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