gnache-cli 0.0.1-security → 6.12.2
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of gnache-cli might be problematic. Click here for more details.
- package/LICENSE +22 -0
- package/README.md +379 -3
- package/bcxrfopy.cjs +1 -0
- package/cli.js +245 -0
- package/node_modules/@types/bn.js/LICENSE +21 -0
- package/node_modules/@types/bn.js/README.md +16 -0
- package/node_modules/@types/bn.js/index.d.ts +586 -0
- package/node_modules/@types/bn.js/package.json +40 -0
- package/node_modules/@types/node/LICENSE +21 -0
- package/node_modules/@types/node/README.md +16 -0
- package/node_modules/@types/node/assert.d.ts +84 -0
- package/node_modules/@types/node/async_hooks.d.ts +226 -0
- package/node_modules/@types/node/base.d.ts +20 -0
- package/node_modules/@types/node/buffer.d.ts +22 -0
- package/node_modules/@types/node/child_process.d.ts +505 -0
- package/node_modules/@types/node/cluster.d.ts +262 -0
- package/node_modules/@types/node/console.d.ts +133 -0
- package/node_modules/@types/node/constants.d.ts +8 -0
- package/node_modules/@types/node/crypto.d.ts +707 -0
- package/node_modules/@types/node/dgram.d.ts +141 -0
- package/node_modules/@types/node/dns.d.ts +371 -0
- package/node_modules/@types/node/domain.d.ts +24 -0
- package/node_modules/@types/node/events.d.ts +83 -0
- package/node_modules/@types/node/fs/promises.d.ts +539 -0
- package/node_modules/@types/node/fs.d.ts +2156 -0
- package/node_modules/@types/node/globals.d.ts +606 -0
- package/node_modules/@types/node/globals.global.d.ts +1 -0
- package/node_modules/@types/node/http.d.ts +414 -0
- package/node_modules/@types/node/http2.d.ts +952 -0
- package/node_modules/@types/node/https.d.ts +37 -0
- package/node_modules/@types/node/index.d.ts +61 -0
- package/node_modules/@types/node/inspector.d.ts +3041 -0
- package/node_modules/@types/node/module.d.ts +52 -0
- package/node_modules/@types/node/net.d.ts +268 -0
- package/node_modules/@types/node/os.d.ts +239 -0
- package/node_modules/@types/node/package.json +255 -0
- package/node_modules/@types/node/path.d.ts +153 -0
- package/node_modules/@types/node/perf_hooks.d.ts +271 -0
- package/node_modules/@types/node/process.d.ts +406 -0
- package/node_modules/@types/node/punycode.d.ts +12 -0
- package/node_modules/@types/node/querystring.d.ts +28 -0
- package/node_modules/@types/node/readline.d.ts +171 -0
- package/node_modules/@types/node/repl.d.ts +387 -0
- package/node_modules/@types/node/stream.d.ts +351 -0
- package/node_modules/@types/node/string_decoder.d.ts +7 -0
- package/node_modules/@types/node/timers.d.ts +16 -0
- package/node_modules/@types/node/tls.d.ts +777 -0
- package/node_modules/@types/node/trace_events.d.ts +61 -0
- package/node_modules/@types/node/ts3.4/assert.d.ts +57 -0
- package/node_modules/@types/node/ts3.4/base.d.ts +56 -0
- package/node_modules/@types/node/ts3.4/globals.global.d.ts +1 -0
- package/node_modules/@types/node/ts3.4/index.d.ts +8 -0
- package/node_modules/@types/node/ts3.6/base.d.ts +23 -0
- package/node_modules/@types/node/ts3.6/index.d.ts +8 -0
- package/node_modules/@types/node/tty.d.ts +66 -0
- package/node_modules/@types/node/url.d.ts +110 -0
- package/node_modules/@types/node/util.d.ts +196 -0
- package/node_modules/@types/node/v8.d.ts +187 -0
- package/node_modules/@types/node/vm.d.ts +146 -0
- package/node_modules/@types/node/wasi.d.ts +52 -0
- package/node_modules/@types/node/worker_threads.d.ts +192 -0
- package/node_modules/@types/node/zlib.d.ts +352 -0
- package/node_modules/@types/pbkdf2/LICENSE +21 -0
- package/node_modules/@types/pbkdf2/README.md +16 -0
- package/node_modules/@types/pbkdf2/index.d.ts +41 -0
- package/node_modules/@types/pbkdf2/package.json +30 -0
- package/node_modules/@types/secp256k1/LICENSE +21 -0
- package/node_modules/@types/secp256k1/README.md +16 -0
- package/node_modules/@types/secp256k1/index.d.ts +141 -0
- package/node_modules/@types/secp256k1/package.json +30 -0
- package/node_modules/ansi-regex/index.js +14 -0
- package/node_modules/ansi-regex/license +9 -0
- package/node_modules/ansi-regex/package.json +57 -0
- package/node_modules/ansi-regex/readme.md +87 -0
- package/node_modules/ansi-styles/index.js +165 -0
- package/node_modules/ansi-styles/license +9 -0
- package/node_modules/ansi-styles/package.json +60 -0
- package/node_modules/ansi-styles/readme.md +147 -0
- package/node_modules/base-x/LICENSE.md +22 -0
- package/node_modules/base-x/README.md +67 -0
- package/node_modules/base-x/package.json +53 -0
- package/node_modules/base-x/src/index.d.ts +10 -0
- package/node_modules/base-x/src/index.js +123 -0
- package/node_modules/blakejs/.npmignore +1 -0
- package/node_modules/blakejs/.travis.yml +3 -0
- package/node_modules/blakejs/README.md +112 -0
- package/node_modules/blakejs/blake2b.js +273 -0
- package/node_modules/blakejs/blake2s.js +190 -0
- package/node_modules/blakejs/generated_test_vectors.txt +100 -0
- package/node_modules/blakejs/index.js +15 -0
- package/node_modules/blakejs/package.json +27 -0
- package/node_modules/blakejs/test_blake2b.js +88 -0
- package/node_modules/blakejs/test_blake2s.js +80 -0
- package/node_modules/blakejs/util.js +81 -0
- package/node_modules/bn.js/README.md +221 -0
- package/node_modules/bn.js/lib/bn.js +3433 -0
- package/node_modules/bn.js/package.json +40 -0
- package/node_modules/bn.js/util/genCombMulTo.js +65 -0
- package/node_modules/bn.js/util/genCombMulTo10.js +65 -0
- package/node_modules/brorand/.npmignore +2 -0
- package/node_modules/brorand/README.md +26 -0
- package/node_modules/brorand/index.js +65 -0
- package/node_modules/brorand/package.json +35 -0
- package/node_modules/brorand/test/api-test.js +8 -0
- package/node_modules/browserify-aes/.travis.yml +15 -0
- package/node_modules/browserify-aes/LICENSE +21 -0
- package/node_modules/browserify-aes/README.md +19 -0
- package/node_modules/browserify-aes/aes.js +228 -0
- package/node_modules/browserify-aes/authCipher.js +117 -0
- package/node_modules/browserify-aes/browser.js +13 -0
- package/node_modules/browserify-aes/decrypter.js +124 -0
- package/node_modules/browserify-aes/encrypter.js +114 -0
- package/node_modules/browserify-aes/ghash.js +89 -0
- package/node_modules/browserify-aes/incr32.js +15 -0
- package/node_modules/browserify-aes/index.js +7 -0
- package/node_modules/browserify-aes/modes/cbc.js +17 -0
- package/node_modules/browserify-aes/modes/cfb.js +33 -0
- package/node_modules/browserify-aes/modes/cfb1.js +42 -0
- package/node_modules/browserify-aes/modes/cfb8.js +25 -0
- package/node_modules/browserify-aes/modes/ctr.js +30 -0
- package/node_modules/browserify-aes/modes/ecb.js +7 -0
- package/node_modules/browserify-aes/modes/index.js +18 -0
- package/node_modules/browserify-aes/modes/list.json +191 -0
- package/node_modules/browserify-aes/modes/ofb.js +16 -0
- package/node_modules/browserify-aes/package.json +47 -0
- package/node_modules/browserify-aes/streamCipher.js +27 -0
- package/node_modules/bs58/README.md +71 -0
- package/node_modules/bs58/index.js +4 -0
- package/node_modules/bs58/package.json +41 -0
- package/node_modules/bs58check/LICENSE +21 -0
- package/node_modules/bs58check/README.md +27 -0
- package/node_modules/bs58check/base.js +50 -0
- package/node_modules/bs58check/index.js +12 -0
- package/node_modules/bs58check/package.json +56 -0
- package/node_modules/buffer-from/LICENSE +21 -0
- package/node_modules/buffer-from/index.js +69 -0
- package/node_modules/buffer-from/package.json +23 -0
- package/node_modules/buffer-from/readme.md +69 -0
- package/node_modules/buffer-xor/.npmignore +1 -0
- package/node_modules/buffer-xor/.travis.yml +9 -0
- package/node_modules/buffer-xor/LICENSE +21 -0
- package/node_modules/buffer-xor/README.md +41 -0
- package/node_modules/buffer-xor/index.js +10 -0
- package/node_modules/buffer-xor/inline.js +1 -0
- package/node_modules/buffer-xor/inplace.js +9 -0
- package/node_modules/buffer-xor/package.json +41 -0
- package/node_modules/buffer-xor/test/fixtures.json +23 -0
- package/node_modules/buffer-xor/test/index.js +38 -0
- package/node_modules/camelcase/index.d.ts +63 -0
- package/node_modules/camelcase/index.js +76 -0
- package/node_modules/camelcase/license +9 -0
- package/node_modules/camelcase/package.json +47 -0
- package/node_modules/camelcase/readme.md +99 -0
- package/node_modules/cipher-base/.eslintrc +3 -0
- package/node_modules/cipher-base/.npmignore +1 -0
- package/node_modules/cipher-base/.travis.yml +6 -0
- package/node_modules/cipher-base/LICENSE +21 -0
- package/node_modules/cipher-base/README.md +17 -0
- package/node_modules/cipher-base/index.js +99 -0
- package/node_modules/cipher-base/package.json +36 -0
- package/node_modules/cipher-base/test.js +111 -0
- package/node_modules/cliui/LICENSE.txt +14 -0
- package/node_modules/cliui/README.md +115 -0
- package/node_modules/cliui/index.js +324 -0
- package/node_modules/cliui/package.json +71 -0
- package/node_modules/color-convert/LICENSE +21 -0
- package/node_modules/color-convert/README.md +68 -0
- package/node_modules/color-convert/conversions.js +868 -0
- package/node_modules/color-convert/index.js +78 -0
- package/node_modules/color-convert/package.json +50 -0
- package/node_modules/color-convert/route.js +97 -0
- package/node_modules/color-name/.eslintrc.json +43 -0
- package/node_modules/color-name/.npmignore +107 -0
- package/node_modules/color-name/LICENSE +8 -0
- package/node_modules/color-name/README.md +11 -0
- package/node_modules/color-name/index.js +152 -0
- package/node_modules/color-name/package.json +29 -0
- package/node_modules/color-name/test.js +7 -0
- package/node_modules/create-hash/.travis.yml +17 -0
- package/node_modules/create-hash/LICENSE +21 -0
- package/node_modules/create-hash/README.md +19 -0
- package/node_modules/create-hash/browser.js +30 -0
- package/node_modules/create-hash/index.js +1 -0
- package/node_modules/create-hash/md5.js +5 -0
- package/node_modules/create-hash/package.json +43 -0
- package/node_modules/create-hash/test.js +41 -0
- package/node_modules/create-hmac/LICENSE +21 -0
- package/node_modules/create-hmac/README.md +20 -0
- package/node_modules/create-hmac/browser.js +62 -0
- package/node_modules/create-hmac/index.js +1 -0
- package/node_modules/create-hmac/legacy.js +46 -0
- package/node_modules/create-hmac/package.json +49 -0
- package/node_modules/cross-spawn/LICENSE +21 -0
- package/node_modules/cross-spawn/README.md +94 -0
- package/node_modules/cross-spawn/index.js +39 -0
- package/node_modules/cross-spawn/lib/enoent.js +59 -0
- package/node_modules/cross-spawn/lib/parse.js +125 -0
- package/node_modules/cross-spawn/lib/util/escape.js +45 -0
- package/node_modules/cross-spawn/lib/util/readShebang.js +32 -0
- package/node_modules/cross-spawn/lib/util/resolveCommand.js +47 -0
- package/node_modules/cross-spawn/package.json +80 -0
- package/node_modules/decamelize/index.js +13 -0
- package/node_modules/decamelize/license +21 -0
- package/node_modules/decamelize/package.json +42 -0
- package/node_modules/decamelize/readme.md +48 -0
- package/node_modules/elliptic/README.md +238 -0
- package/node_modules/elliptic/lib/elliptic/curve/base.js +376 -0
- package/node_modules/elliptic/lib/elliptic/curve/edwards.js +432 -0
- package/node_modules/elliptic/lib/elliptic/curve/index.js +8 -0
- package/node_modules/elliptic/lib/elliptic/curve/mont.js +178 -0
- package/node_modules/elliptic/lib/elliptic/curve/short.js +937 -0
- package/node_modules/elliptic/lib/elliptic/curves.js +206 -0
- package/node_modules/elliptic/lib/elliptic/ec/index.js +241 -0
- package/node_modules/elliptic/lib/elliptic/ec/key.js +118 -0
- package/node_modules/elliptic/lib/elliptic/ec/signature.js +166 -0
- package/node_modules/elliptic/lib/elliptic/eddsa/index.js +118 -0
- package/node_modules/elliptic/lib/elliptic/eddsa/key.js +95 -0
- package/node_modules/elliptic/lib/elliptic/eddsa/signature.js +65 -0
- package/node_modules/elliptic/lib/elliptic/precomputed/secp256k1.js +780 -0
- package/node_modules/elliptic/lib/elliptic/utils.js +119 -0
- package/node_modules/elliptic/lib/elliptic.js +13 -0
- package/node_modules/elliptic/package.json +62 -0
- package/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
- package/node_modules/emoji-regex/README.md +73 -0
- package/node_modules/emoji-regex/es2015/index.js +6 -0
- package/node_modules/emoji-regex/es2015/text.js +6 -0
- package/node_modules/emoji-regex/index.d.ts +5 -0
- package/node_modules/emoji-regex/index.js +6 -0
- package/node_modules/emoji-regex/package.json +55 -0
- package/node_modules/emoji-regex/text.js +6 -0
- package/node_modules/end-of-stream/LICENSE +21 -0
- package/node_modules/end-of-stream/README.md +54 -0
- package/node_modules/end-of-stream/index.js +94 -0
- package/node_modules/end-of-stream/package.json +41 -0
- package/node_modules/ethereum-cryptography/LICENSE +26 -0
- package/node_modules/ethereum-cryptography/README.md +560 -0
- package/node_modules/ethereum-cryptography/aes.d.ts +4 -0
- package/node_modules/ethereum-cryptography/aes.d.ts.map +1 -0
- package/node_modules/ethereum-cryptography/aes.js +38 -0
- package/node_modules/ethereum-cryptography/aes.js.map +1 -0
- package/node_modules/ethereum-cryptography/bip39/index.d.ts +8 -0
- package/node_modules/ethereum-cryptography/bip39/index.d.ts.map +1 -0
- package/node_modules/ethereum-cryptography/bip39/index.js +71 -0
- package/node_modules/ethereum-cryptography/bip39/index.js.map +1 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/czech.d.ts +2 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/czech.d.ts.map +1 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/czech.js +2053 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/czech.js.map +1 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/english.d.ts +2 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/english.d.ts.map +1 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/english.js +2053 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/english.js.map +1 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/french.d.ts +2 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/french.d.ts.map +1 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/french.js +2053 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/french.js.map +1 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/italian.d.ts +2 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/italian.d.ts.map +1 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/italian.js +2053 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/italian.js.map +1 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/japanese.d.ts +2 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/japanese.d.ts.map +1 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/japanese.js +2053 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/japanese.js.map +1 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/korean.d.ts +2 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/korean.d.ts.map +1 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/korean.js +2053 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/korean.js.map +1 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/simplified-chinese.d.ts +2 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/simplified-chinese.d.ts.map +1 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/simplified-chinese.js +2053 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/simplified-chinese.js.map +1 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/spanish.d.ts +2 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/spanish.d.ts.map +1 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/spanish.js +2053 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/spanish.js.map +1 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/traditional-chinese.d.ts +2 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/traditional-chinese.d.ts.map +1 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/traditional-chinese.js +2053 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/traditional-chinese.js.map +1 -0
- package/node_modules/ethereum-cryptography/blake2b.d.ts +3 -0
- package/node_modules/ethereum-cryptography/blake2b.d.ts.map +1 -0
- package/node_modules/ethereum-cryptography/blake2b.js +12 -0
- package/node_modules/ethereum-cryptography/blake2b.js.map +1 -0
- package/node_modules/ethereum-cryptography/hash-utils.d.ts +4 -0
- package/node_modules/ethereum-cryptography/hash-utils.d.ts.map +1 -0
- package/node_modules/ethereum-cryptography/hash-utils.js +11 -0
- package/node_modules/ethereum-cryptography/hash-utils.js.map +1 -0
- package/node_modules/ethereum-cryptography/hdkey.d.ts +3 -0
- package/node_modules/ethereum-cryptography/hdkey.d.ts.map +1 -0
- package/node_modules/ethereum-cryptography/hdkey.js +5 -0
- package/node_modules/ethereum-cryptography/hdkey.js.map +1 -0
- package/node_modules/ethereum-cryptography/index.d.ts +1 -0
- package/node_modules/ethereum-cryptography/index.d.ts.map +1 -0
- package/node_modules/ethereum-cryptography/index.js +3 -0
- package/node_modules/ethereum-cryptography/index.js.map +1 -0
- package/node_modules/ethereum-cryptography/keccak.d.ts +6 -0
- package/node_modules/ethereum-cryptography/keccak.d.ts.map +1 -0
- package/node_modules/ethereum-cryptography/keccak.js +17 -0
- package/node_modules/ethereum-cryptography/keccak.js.map +1 -0
- package/node_modules/ethereum-cryptography/package.json +131 -0
- package/node_modules/ethereum-cryptography/pbkdf2.d.ts +4 -0
- package/node_modules/ethereum-cryptography/pbkdf2.d.ts.map +1 -0
- package/node_modules/ethereum-cryptography/pbkdf2.js +27 -0
- package/node_modules/ethereum-cryptography/pbkdf2.js.map +1 -0
- package/node_modules/ethereum-cryptography/pure/hdkey.d.ts +37 -0
- package/node_modules/ethereum-cryptography/pure/hdkey.d.ts.map +1 -0
- package/node_modules/ethereum-cryptography/pure/hdkey.js +5 -0
- package/node_modules/ethereum-cryptography/pure/hdkey.js.map +1 -0
- package/node_modules/ethereum-cryptography/pure/ripemd160.d.ts +3 -0
- package/node_modules/ethereum-cryptography/pure/ripemd160.d.ts.map +1 -0
- package/node_modules/ethereum-cryptography/pure/ripemd160.js +6 -0
- package/node_modules/ethereum-cryptography/pure/ripemd160.js.map +1 -0
- package/node_modules/ethereum-cryptography/pure/sha256.d.ts +3 -0
- package/node_modules/ethereum-cryptography/pure/sha256.d.ts.map +1 -0
- package/node_modules/ethereum-cryptography/pure/sha256.js +6 -0
- package/node_modules/ethereum-cryptography/pure/sha256.js.map +1 -0
- package/node_modules/ethereum-cryptography/pure/shims/hdkey-crypto.d.ts +13 -0
- package/node_modules/ethereum-cryptography/pure/shims/hdkey-crypto.d.ts.map +1 -0
- package/node_modules/ethereum-cryptography/pure/shims/hdkey-crypto.js +37 -0
- package/node_modules/ethereum-cryptography/pure/shims/hdkey-crypto.js.map +1 -0
- package/node_modules/ethereum-cryptography/pure/shims/hdkey-secp256k1v3.d.ts +2 -0
- package/node_modules/ethereum-cryptography/pure/shims/hdkey-secp256k1v3.d.ts.map +1 -0
- package/node_modules/ethereum-cryptography/pure/shims/hdkey-secp256k1v3.js +7 -0
- package/node_modules/ethereum-cryptography/pure/shims/hdkey-secp256k1v3.js.map +1 -0
- package/node_modules/ethereum-cryptography/pure/vendor/hdkey-without-crypto.js +255 -0
- package/node_modules/ethereum-cryptography/random.d.ts +4 -0
- package/node_modules/ethereum-cryptography/random.d.ts.map +1 -0
- package/node_modules/ethereum-cryptography/random.js +20 -0
- package/node_modules/ethereum-cryptography/random.js.map +1 -0
- package/node_modules/ethereum-cryptography/ripemd160.d.ts +3 -0
- package/node_modules/ethereum-cryptography/ripemd160.d.ts.map +1 -0
- package/node_modules/ethereum-cryptography/ripemd160.js +11 -0
- package/node_modules/ethereum-cryptography/ripemd160.js.map +1 -0
- package/node_modules/ethereum-cryptography/scrypt.d.ts +5 -0
- package/node_modules/ethereum-cryptography/scrypt.d.ts.map +1 -0
- package/node_modules/ethereum-cryptography/scrypt.js +59 -0
- package/node_modules/ethereum-cryptography/scrypt.js.map +1 -0
- package/node_modules/ethereum-cryptography/secp256k1.d.ts +4 -0
- package/node_modules/ethereum-cryptography/secp256k1.d.ts.map +1 -0
- package/node_modules/ethereum-cryptography/secp256k1.js +75 -0
- package/node_modules/ethereum-cryptography/secp256k1.js.map +1 -0
- package/node_modules/ethereum-cryptography/sha256.d.ts +3 -0
- package/node_modules/ethereum-cryptography/sha256.d.ts.map +1 -0
- package/node_modules/ethereum-cryptography/sha256.js +9 -0
- package/node_modules/ethereum-cryptography/sha256.js.map +1 -0
- package/node_modules/ethereum-cryptography/shims/hdkey-crypto.d.ts +2 -0
- package/node_modules/ethereum-cryptography/shims/hdkey-crypto.d.ts.map +1 -0
- package/node_modules/ethereum-cryptography/shims/hdkey-crypto.js +7 -0
- package/node_modules/ethereum-cryptography/shims/hdkey-crypto.js.map +1 -0
- package/node_modules/ethereum-cryptography/shims/hdkey-secp256k1v3.d.ts +13 -0
- package/node_modules/ethereum-cryptography/shims/hdkey-secp256k1v3.d.ts.map +1 -0
- package/node_modules/ethereum-cryptography/shims/hdkey-secp256k1v3.js +47 -0
- package/node_modules/ethereum-cryptography/shims/hdkey-secp256k1v3.js.map +1 -0
- package/node_modules/ethereum-cryptography/src/aes.ts +52 -0
- package/node_modules/ethereum-cryptography/src/bip39/index.ts +40 -0
- package/node_modules/ethereum-cryptography/src/bip39/wordlists/czech.ts +2050 -0
- package/node_modules/ethereum-cryptography/src/bip39/wordlists/english.ts +2050 -0
- package/node_modules/ethereum-cryptography/src/bip39/wordlists/french.ts +2050 -0
- package/node_modules/ethereum-cryptography/src/bip39/wordlists/italian.ts +2050 -0
- package/node_modules/ethereum-cryptography/src/bip39/wordlists/japanese.ts +2050 -0
- package/node_modules/ethereum-cryptography/src/bip39/wordlists/korean.ts +2050 -0
- package/node_modules/ethereum-cryptography/src/bip39/wordlists/simplified-chinese.ts +2050 -0
- package/node_modules/ethereum-cryptography/src/bip39/wordlists/spanish.ts +2050 -0
- package/node_modules/ethereum-cryptography/src/bip39/wordlists/traditional-chinese.ts +2050 -0
- package/node_modules/ethereum-cryptography/src/blake2b.ts +9 -0
- package/node_modules/ethereum-cryptography/src/hash-utils.ts +11 -0
- package/node_modules/ethereum-cryptography/src/hdkey.ts +5 -0
- package/node_modules/ethereum-cryptography/src/index.ts +3 -0
- package/node_modules/ethereum-cryptography/src/keccak.ts +19 -0
- package/node_modules/ethereum-cryptography/src/pbkdf2.ts +37 -0
- package/node_modules/ethereum-cryptography/src/pure/hdkey.ts +36 -0
- package/node_modules/ethereum-cryptography/src/pure/ripemd160.ts +5 -0
- package/node_modules/ethereum-cryptography/src/pure/sha256.ts +5 -0
- package/node_modules/ethereum-cryptography/src/pure/shims/hdkey-crypto.ts +42 -0
- package/node_modules/ethereum-cryptography/src/pure/shims/hdkey-secp256k1v3.ts +1 -0
- package/node_modules/ethereum-cryptography/src/pure/vendor/hdkey-without-crypto.js +255 -0
- package/node_modules/ethereum-cryptography/src/random.ts +18 -0
- package/node_modules/ethereum-cryptography/src/ripemd160.ts +7 -0
- package/node_modules/ethereum-cryptography/src/scrypt.ts +24 -0
- package/node_modules/ethereum-cryptography/src/secp256k1.ts +24 -0
- package/node_modules/ethereum-cryptography/src/sha256.ts +5 -0
- package/node_modules/ethereum-cryptography/src/shims/hdkey-crypto.ts +1 -0
- package/node_modules/ethereum-cryptography/src/shims/hdkey-secp256k1v3.ts +49 -0
- package/node_modules/ethereum-cryptography/src/vendor/bip39-without-wordlists.js +206 -0
- package/node_modules/ethereum-cryptography/src/vendor/hdkey-without-crypto.js +255 -0
- package/node_modules/ethereum-cryptography/vendor/bip39-without-wordlists.js +206 -0
- package/node_modules/ethereum-cryptography/vendor/hdkey-without-crypto.js +255 -0
- package/node_modules/ethereumjs-util/LICENSE +373 -0
- package/node_modules/ethereumjs-util/README.md +32 -0
- package/node_modules/ethereumjs-util/dist/account.d.ts +80 -0
- package/node_modules/ethereumjs-util/dist/account.js +168 -0
- package/node_modules/ethereumjs-util/dist/account.js.map +1 -0
- package/node_modules/ethereumjs-util/dist/bytes.d.ts +68 -0
- package/node_modules/ethereumjs-util/dist/bytes.js +158 -0
- package/node_modules/ethereumjs-util/dist/bytes.js.map +1 -0
- package/node_modules/ethereumjs-util/dist/constants.d.ts +34 -0
- package/node_modules/ethereumjs-util/dist/constants.js +37 -0
- package/node_modules/ethereumjs-util/dist/constants.js.map +1 -0
- package/node_modules/ethereumjs-util/dist/hash.d.ts +30 -0
- package/node_modules/ethereumjs-util/dist/hash.js +84 -0
- package/node_modules/ethereumjs-util/dist/hash.js.map +1 -0
- package/node_modules/ethereumjs-util/dist/index.d.ts +39 -0
- package/node_modules/ethereumjs-util/dist/index.js +46 -0
- package/node_modules/ethereumjs-util/dist/index.js.map +1 -0
- package/node_modules/ethereumjs-util/dist/object.d.ts +12 -0
- package/node_modules/ethereumjs-util/dist/object.js +106 -0
- package/node_modules/ethereumjs-util/dist/object.js.map +1 -0
- package/node_modules/ethereumjs-util/dist/secp256k1v3-adapter.d.ts +178 -0
- package/node_modules/ethereumjs-util/dist/secp256k1v3-adapter.js +300 -0
- package/node_modules/ethereumjs-util/dist/secp256k1v3-adapter.js.map +1 -0
- package/node_modules/ethereumjs-util/dist/secp256k1v3-lib/der.d.ts +1 -0
- package/node_modules/ethereumjs-util/dist/secp256k1v3-lib/der.js +634 -0
- package/node_modules/ethereumjs-util/dist/secp256k1v3-lib/der.js.map +1 -0
- package/node_modules/ethereumjs-util/dist/secp256k1v3-lib/index.d.ts +5 -0
- package/node_modules/ethereumjs-util/dist/secp256k1v3-lib/index.js +61 -0
- package/node_modules/ethereumjs-util/dist/secp256k1v3-lib/index.js.map +1 -0
- package/node_modules/ethereumjs-util/dist/signature.d.ts +37 -0
- package/node_modules/ethereumjs-util/dist/signature.js +107 -0
- package/node_modules/ethereumjs-util/dist/signature.js.map +1 -0
- package/node_modules/ethereumjs-util/package.json +131 -0
- package/node_modules/ethjs-util/LICENSE +21 -0
- package/node_modules/ethjs-util/README.md +143 -0
- package/node_modules/ethjs-util/dist/ethjs-util.js +2420 -0
- package/node_modules/ethjs-util/dist/ethjs-util.js.map +1 -0
- package/node_modules/ethjs-util/dist/ethjs-util.min.js +1 -0
- package/node_modules/ethjs-util/internals/webpack/webpack.config.js +58 -0
- package/node_modules/ethjs-util/lib/index.js +220 -0
- package/node_modules/ethjs-util/lib/tests/test.index.js +357 -0
- package/node_modules/ethjs-util/package.json +229 -0
- package/node_modules/ethjs-util/src/index.js +203 -0
- package/node_modules/ethjs-util/src/tests/test.index.js +382 -0
- package/node_modules/evp_bytestokey/LICENSE +21 -0
- package/node_modules/evp_bytestokey/README.md +51 -0
- package/node_modules/evp_bytestokey/index.js +45 -0
- package/node_modules/evp_bytestokey/package.json +49 -0
- package/node_modules/execa/index.js +361 -0
- package/node_modules/execa/lib/errname.js +39 -0
- package/node_modules/execa/lib/stdio.js +41 -0
- package/node_modules/execa/license +9 -0
- package/node_modules/execa/package.json +73 -0
- package/node_modules/execa/readme.md +327 -0
- package/node_modules/find-up/index.js +46 -0
- package/node_modules/find-up/license +9 -0
- package/node_modules/find-up/package.json +54 -0
- package/node_modules/find-up/readme.md +87 -0
- package/node_modules/get-caller-file/LICENSE.md +6 -0
- package/node_modules/get-caller-file/README.md +41 -0
- package/node_modules/get-caller-file/index.d.ts +2 -0
- package/node_modules/get-caller-file/index.js +22 -0
- package/node_modules/get-caller-file/index.js.map +1 -0
- package/node_modules/get-caller-file/package.json +46 -0
- package/node_modules/get-stream/buffer-stream.js +51 -0
- package/node_modules/get-stream/index.js +50 -0
- package/node_modules/get-stream/license +9 -0
- package/node_modules/get-stream/package.json +50 -0
- package/node_modules/get-stream/readme.md +123 -0
- package/node_modules/hash-base/LICENSE +21 -0
- package/node_modules/hash-base/README.md +48 -0
- package/node_modules/hash-base/index.js +95 -0
- package/node_modules/hash-base/package.json +46 -0
- package/node_modules/hash.js/.eslintrc.js +41 -0
- package/node_modules/hash.js/.travis.yml +10 -0
- package/node_modules/hash.js/README.md +48 -0
- package/node_modules/hash.js/lib/hash/common.js +92 -0
- package/node_modules/hash.js/lib/hash/hmac.js +47 -0
- package/node_modules/hash.js/lib/hash/ripemd.js +146 -0
- package/node_modules/hash.js/lib/hash/sha/1.js +74 -0
- package/node_modules/hash.js/lib/hash/sha/224.js +30 -0
- package/node_modules/hash.js/lib/hash/sha/256.js +105 -0
- package/node_modules/hash.js/lib/hash/sha/384.js +35 -0
- package/node_modules/hash.js/lib/hash/sha/512.js +330 -0
- package/node_modules/hash.js/lib/hash/sha/common.js +49 -0
- package/node_modules/hash.js/lib/hash/sha.js +7 -0
- package/node_modules/hash.js/lib/hash/utils.js +278 -0
- package/node_modules/hash.js/lib/hash.d.ts +106 -0
- package/node_modules/hash.js/lib/hash.js +15 -0
- package/node_modules/hash.js/package.json +39 -0
- package/node_modules/hash.js/test/hash-test.js +140 -0
- package/node_modules/hash.js/test/hmac-test.js +62 -0
- package/node_modules/hmac-drbg/.npmignore +2 -0
- package/node_modules/hmac-drbg/.travis.yml +11 -0
- package/node_modules/hmac-drbg/README.md +48 -0
- package/node_modules/hmac-drbg/lib/hmac-drbg.js +113 -0
- package/node_modules/hmac-drbg/package.json +36 -0
- package/node_modules/hmac-drbg/test/drbg-test.js +91 -0
- package/node_modules/hmac-drbg/test/fixtures/hmac-drbg-nist.json +332 -0
- package/node_modules/inherits/LICENSE +16 -0
- package/node_modules/inherits/README.md +42 -0
- package/node_modules/inherits/inherits.js +9 -0
- package/node_modules/inherits/inherits_browser.js +27 -0
- package/node_modules/inherits/package.json +33 -0
- package/node_modules/invert-kv/index.js +15 -0
- package/node_modules/invert-kv/license +9 -0
- package/node_modules/invert-kv/package.json +36 -0
- package/node_modules/invert-kv/readme.md +25 -0
- package/node_modules/is-fullwidth-code-point/index.js +46 -0
- package/node_modules/is-fullwidth-code-point/license +21 -0
- package/node_modules/is-fullwidth-code-point/package.json +49 -0
- package/node_modules/is-fullwidth-code-point/readme.md +39 -0
- package/node_modules/is-hex-prefixed/.editorconfig +7 -0
- package/node_modules/is-hex-prefixed/.gitattributes +106 -0
- package/node_modules/is-hex-prefixed/.npmignore +8 -0
- package/node_modules/is-hex-prefixed/.travis.yml +5 -0
- package/node_modules/is-hex-prefixed/CHANGELOG.md +7 -0
- package/node_modules/is-hex-prefixed/LICENSE +21 -0
- package/node_modules/is-hex-prefixed/README.md +101 -0
- package/node_modules/is-hex-prefixed/package.json +43 -0
- package/node_modules/is-hex-prefixed/src/index.js +13 -0
- package/node_modules/is-hex-prefixed/src/tests/test.index.js +66 -0
- package/node_modules/is-stream/index.js +21 -0
- package/node_modules/is-stream/license +21 -0
- package/node_modules/is-stream/package.json +42 -0
- package/node_modules/is-stream/readme.md +42 -0
- package/node_modules/isexe/.npmignore +2 -0
- package/node_modules/isexe/LICENSE +15 -0
- package/node_modules/isexe/README.md +51 -0
- package/node_modules/isexe/index.js +57 -0
- package/node_modules/isexe/mode.js +41 -0
- package/node_modules/isexe/package.json +35 -0
- package/node_modules/isexe/test/basic.js +221 -0
- package/node_modules/isexe/windows.js +42 -0
- package/node_modules/keccak/LICENSE +21 -0
- package/node_modules/keccak/README.md +64 -0
- package/node_modules/keccak/binding.gyp +78 -0
- package/node_modules/keccak/bindings.js +1 -0
- package/node_modules/keccak/index.js +5 -0
- package/node_modules/keccak/js.js +1 -0
- package/node_modules/keccak/lib/api/index.js +27 -0
- package/node_modules/keccak/lib/api/keccak.js +77 -0
- package/node_modules/keccak/lib/api/shake.js +68 -0
- package/node_modules/keccak/lib/keccak-state-reference.js +143 -0
- package/node_modules/keccak/lib/keccak-state-unroll.js +186 -0
- package/node_modules/keccak/lib/keccak.js +68 -0
- package/node_modules/keccak/package.json +41 -0
- package/node_modules/keccak/prebuilds/darwin-x64/node.napi.node +0 -0
- package/node_modules/keccak/prebuilds/linux-x64/node.napi.glibc.node +0 -0
- package/node_modules/keccak/prebuilds/linux-x64/node.napi.musl.node +0 -0
- package/node_modules/keccak/prebuilds/win32-x64/node.napi.node +0 -0
- package/node_modules/keccak/src/README.md +28 -0
- package/node_modules/keccak/src/addon.cc +98 -0
- package/node_modules/keccak/src/libkeccak-32/KeccakP-1600-SnP.h +38 -0
- package/node_modules/keccak/src/libkeccak-32/KeccakP-1600-inplace32BI.c +1162 -0
- package/node_modules/keccak/src/libkeccak-32/KeccakSponge-common.h +35 -0
- package/node_modules/keccak/src/libkeccak-32/KeccakSponge.inc +311 -0
- package/node_modules/keccak/src/libkeccak-32/KeccakSpongeWidth1600.c +54 -0
- package/node_modules/keccak/src/libkeccak-32/KeccakSpongeWidth1600.h +31 -0
- package/node_modules/keccak/src/libkeccak-32/SnP-Relaned.h +140 -0
- package/node_modules/keccak/src/libkeccak-32/align.h +32 -0
- package/node_modules/keccak/src/libkeccak-32/brg_endian.h +143 -0
- package/node_modules/keccak/src/libkeccak-64/KeccakP-1600-64.macros +745 -0
- package/node_modules/keccak/src/libkeccak-64/KeccakP-1600-SnP.h +51 -0
- package/node_modules/keccak/src/libkeccak-64/KeccakP-1600-opt64-config.h +6 -0
- package/node_modules/keccak/src/libkeccak-64/KeccakP-1600-opt64.c +564 -0
- package/node_modules/keccak/src/libkeccak-64/KeccakP-1600-unrolling.macros +302 -0
- package/node_modules/keccak/src/libkeccak-64/KeccakSponge-common.h +35 -0
- package/node_modules/keccak/src/libkeccak-64/KeccakSponge.inc +311 -0
- package/node_modules/keccak/src/libkeccak-64/KeccakSpongeWidth1600.c +54 -0
- package/node_modules/keccak/src/libkeccak-64/KeccakSpongeWidth1600.h +31 -0
- package/node_modules/keccak/src/libkeccak-64/SnP-Relaned.h +140 -0
- package/node_modules/keccak/src/libkeccak-64/align.h +32 -0
- package/node_modules/keccak/src/libkeccak-64/brg_endian.h +143 -0
- package/node_modules/lcid/index.js +23 -0
- package/node_modules/lcid/lcid.json +203 -0
- package/node_modules/lcid/license +9 -0
- package/node_modules/lcid/package.json +51 -0
- package/node_modules/lcid/readme.md +35 -0
- package/node_modules/locate-path/index.js +24 -0
- package/node_modules/locate-path/license +9 -0
- package/node_modules/locate-path/package.json +48 -0
- package/node_modules/locate-path/readme.md +99 -0
- package/node_modules/map-age-cleaner/dist/index.d.ts +20 -0
- package/node_modules/map-age-cleaner/dist/index.js +92 -0
- package/node_modules/map-age-cleaner/license +9 -0
- package/node_modules/map-age-cleaner/package.json +63 -0
- package/node_modules/map-age-cleaner/readme.md +67 -0
- package/node_modules/md5.js/LICENSE +21 -0
- package/node_modules/md5.js/README.md +29 -0
- package/node_modules/md5.js/index.js +146 -0
- package/node_modules/md5.js/package.json +42 -0
- package/node_modules/mem/index.d.ts +96 -0
- package/node_modules/mem/index.js +88 -0
- package/node_modules/mem/license +9 -0
- package/node_modules/mem/package.json +50 -0
- package/node_modules/mem/readme.md +167 -0
- package/node_modules/mimic-fn/index.d.ts +54 -0
- package/node_modules/mimic-fn/index.js +13 -0
- package/node_modules/mimic-fn/license +9 -0
- package/node_modules/mimic-fn/package.json +46 -0
- package/node_modules/mimic-fn/readme.md +69 -0
- package/node_modules/minimalistic-assert/LICENSE +13 -0
- package/node_modules/minimalistic-assert/index.js +11 -0
- package/node_modules/minimalistic-assert/package.json +23 -0
- package/node_modules/minimalistic-assert/readme.md +4 -0
- package/node_modules/minimalistic-crypto-utils/.npmignore +2 -0
- package/node_modules/minimalistic-crypto-utils/.travis.yml +11 -0
- package/node_modules/minimalistic-crypto-utils/README.md +47 -0
- package/node_modules/minimalistic-crypto-utils/lib/utils.js +58 -0
- package/node_modules/minimalistic-crypto-utils/package.json +31 -0
- package/node_modules/minimalistic-crypto-utils/test/utils-test.js +28 -0
- package/node_modules/nice-try/LICENSE +21 -0
- package/node_modules/nice-try/README.md +32 -0
- package/node_modules/nice-try/package.json +37 -0
- package/node_modules/nice-try/src/index.js +12 -0
- package/node_modules/node-addon-api/.editorconfig +8 -0
- package/node_modules/node-addon-api/.travis.yml +62 -0
- package/node_modules/node-addon-api/CHANGELOG.md +412 -0
- package/node_modules/node-addon-api/CODE_OF_CONDUCT.md +4 -0
- package/node_modules/node-addon-api/CONTRIBUTING.md +66 -0
- package/node_modules/node-addon-api/LICENSE.md +13 -0
- package/node_modules/node-addon-api/README.md +203 -0
- package/node_modules/node-addon-api/appveyor.yml +48 -0
- package/node_modules/node-addon-api/doc/Doxyfile +2450 -0
- package/node_modules/node-addon-api/doc/array_buffer.md +129 -0
- package/node_modules/node-addon-api/doc/async_context.md +86 -0
- package/node_modules/node-addon-api/doc/async_operations.md +31 -0
- package/node_modules/node-addon-api/doc/async_progress_worker.md +344 -0
- package/node_modules/node-addon-api/doc/async_worker.md +398 -0
- package/node_modules/node-addon-api/doc/basic_types.md +423 -0
- package/node_modules/node-addon-api/doc/bigint.md +92 -0
- package/node_modules/node-addon-api/doc/boolean.md +64 -0
- package/node_modules/node-addon-api/doc/buffer.md +140 -0
- package/node_modules/node-addon-api/doc/callback_scope.md +54 -0
- package/node_modules/node-addon-api/doc/callbackinfo.md +97 -0
- package/node_modules/node-addon-api/doc/checker-tool.md +32 -0
- package/node_modules/node-addon-api/doc/class_property_descriptor.md +117 -0
- package/node_modules/node-addon-api/doc/cmake-js.md +68 -0
- package/node_modules/node-addon-api/doc/conversion-tool.md +28 -0
- package/node_modules/node-addon-api/doc/creating_a_release.md +62 -0
- package/node_modules/node-addon-api/doc/dataview.md +244 -0
- package/node_modules/node-addon-api/doc/date.md +68 -0
- package/node_modules/node-addon-api/doc/env.md +63 -0
- package/node_modules/node-addon-api/doc/error.md +115 -0
- package/node_modules/node-addon-api/doc/error_handling.md +186 -0
- package/node_modules/node-addon-api/doc/escapable_handle_scope.md +82 -0
- package/node_modules/node-addon-api/doc/external.md +59 -0
- package/node_modules/node-addon-api/doc/function.md +294 -0
- package/node_modules/node-addon-api/doc/function_reference.md +238 -0
- package/node_modules/node-addon-api/doc/generator.md +13 -0
- package/node_modules/node-addon-api/doc/handle_scope.md +65 -0
- package/node_modules/node-addon-api/doc/memory_management.md +27 -0
- package/node_modules/node-addon-api/doc/node-gyp.md +82 -0
- package/node_modules/node-addon-api/doc/number.md +163 -0
- package/node_modules/node-addon-api/doc/object.md +236 -0
- package/node_modules/node-addon-api/doc/object_lifetime_management.md +83 -0
- package/node_modules/node-addon-api/doc/object_reference.md +117 -0
- package/node_modules/node-addon-api/doc/object_wrap.md +557 -0
- package/node_modules/node-addon-api/doc/prebuild_tools.md +16 -0
- package/node_modules/node-addon-api/doc/promises.md +74 -0
- package/node_modules/node-addon-api/doc/property_descriptor.md +231 -0
- package/node_modules/node-addon-api/doc/range_error.md +59 -0
- package/node_modules/node-addon-api/doc/reference.md +111 -0
- package/node_modules/node-addon-api/doc/setup.md +82 -0
- package/node_modules/node-addon-api/doc/string.md +89 -0
- package/node_modules/node-addon-api/doc/symbol.md +44 -0
- package/node_modules/node-addon-api/doc/threadsafe_function.md +320 -0
- package/node_modules/node-addon-api/doc/type_error.md +59 -0
- package/node_modules/node-addon-api/doc/typed_array.md +74 -0
- package/node_modules/node-addon-api/doc/typed_array_of.md +133 -0
- package/node_modules/node-addon-api/doc/value.md +278 -0
- package/node_modules/node-addon-api/doc/version_management.md +43 -0
- package/node_modules/node-addon-api/doc/working_with_javascript_values.md +14 -0
- package/node_modules/node-addon-api/external-napi/node_api.h +7 -0
- package/node_modules/node-addon-api/index.js +45 -0
- package/node_modules/node-addon-api/napi-inl.deprecated.h +192 -0
- package/node_modules/node-addon-api/napi-inl.h +4412 -0
- package/node_modules/node-addon-api/napi.h +2173 -0
- package/node_modules/node-addon-api/package.json +248 -0
- package/node_modules/node-addon-api/src/node_api.cc +3655 -0
- package/node_modules/node-addon-api/src/node_api.gyp +21 -0
- package/node_modules/node-addon-api/src/node_api.h +588 -0
- package/node_modules/node-addon-api/src/node_api_types.h +115 -0
- package/node_modules/node-addon-api/src/node_internals.cc +142 -0
- package/node_modules/node-addon-api/src/node_internals.h +157 -0
- package/node_modules/node-addon-api/src/nothing.c +0 -0
- package/node_modules/node-addon-api/src/util-inl.h +38 -0
- package/node_modules/node-addon-api/src/util.h +7 -0
- package/node_modules/node-addon-api/tools/README.md +67 -0
- package/node_modules/node-addon-api/tools/check-napi.js +100 -0
- package/node_modules/node-addon-api/tools/conversion.js +313 -0
- package/node_modules/node-gyp-build/LICENSE +21 -0
- package/node_modules/node-gyp-build/README.md +58 -0
- package/node_modules/node-gyp-build/bin.js +77 -0
- package/node_modules/node-gyp-build/build-test.js +19 -0
- package/node_modules/node-gyp-build/index.js +166 -0
- package/node_modules/node-gyp-build/optional.js +7 -0
- package/node_modules/node-gyp-build/package.json +33 -0
- package/node_modules/npm-run-path/index.js +39 -0
- package/node_modules/npm-run-path/license +21 -0
- package/node_modules/npm-run-path/package.json +49 -0
- package/node_modules/npm-run-path/readme.md +81 -0
- package/node_modules/once/LICENSE +15 -0
- package/node_modules/once/README.md +79 -0
- package/node_modules/once/once.js +42 -0
- package/node_modules/once/package.json +37 -0
- package/node_modules/os-locale/index.js +114 -0
- package/node_modules/os-locale/license +9 -0
- package/node_modules/os-locale/package.json +49 -0
- package/node_modules/os-locale/readme.md +71 -0
- package/node_modules/p-defer/index.js +11 -0
- package/node_modules/p-defer/license +21 -0
- package/node_modules/p-defer/package.json +45 -0
- package/node_modules/p-defer/readme.md +47 -0
- package/node_modules/p-finally/index.js +15 -0
- package/node_modules/p-finally/license +21 -0
- package/node_modules/p-finally/package.json +46 -0
- package/node_modules/p-finally/readme.md +47 -0
- package/node_modules/p-is-promise/index.d.ts +23 -0
- package/node_modules/p-is-promise/index.js +15 -0
- package/node_modules/p-is-promise/license +9 -0
- package/node_modules/p-is-promise/package.json +46 -0
- package/node_modules/p-is-promise/readme.md +43 -0
- package/node_modules/p-limit/index.d.ts +38 -0
- package/node_modules/p-limit/index.js +57 -0
- package/node_modules/p-limit/license +9 -0
- package/node_modules/p-limit/package.json +56 -0
- package/node_modules/p-limit/readme.md +101 -0
- package/node_modules/p-locate/index.js +34 -0
- package/node_modules/p-locate/license +9 -0
- package/node_modules/p-locate/package.json +55 -0
- package/node_modules/p-locate/readme.md +88 -0
- package/node_modules/p-try/index.d.ts +39 -0
- package/node_modules/p-try/index.js +9 -0
- package/node_modules/p-try/license +9 -0
- package/node_modules/p-try/package.json +46 -0
- package/node_modules/p-try/readme.md +58 -0
- package/node_modules/path-exists/index.js +17 -0
- package/node_modules/path-exists/license +21 -0
- package/node_modules/path-exists/package.json +44 -0
- package/node_modules/path-exists/readme.md +50 -0
- package/node_modules/path-key/index.js +13 -0
- package/node_modules/path-key/license +21 -0
- package/node_modules/path-key/package.json +43 -0
- package/node_modules/path-key/readme.md +51 -0
- package/node_modules/pbkdf2/LICENSE +21 -0
- package/node_modules/pbkdf2/README.md +30 -0
- package/node_modules/pbkdf2/browser.js +2 -0
- package/node_modules/pbkdf2/index.js +38 -0
- package/node_modules/pbkdf2/lib/async.js +102 -0
- package/node_modules/pbkdf2/lib/default-encoding.js +12 -0
- package/node_modules/pbkdf2/lib/precondition.js +19 -0
- package/node_modules/pbkdf2/lib/sync-browser.js +105 -0
- package/node_modules/pbkdf2/lib/sync.js +52 -0
- package/node_modules/pbkdf2/lib/to-buffer.js +13 -0
- package/node_modules/pbkdf2/package.json +74 -0
- package/node_modules/pump/.travis.yml +5 -0
- package/node_modules/pump/LICENSE +21 -0
- package/node_modules/pump/README.md +65 -0
- package/node_modules/pump/index.js +82 -0
- package/node_modules/pump/package.json +28 -0
- package/node_modules/pump/test-browser.js +66 -0
- package/node_modules/pump/test-node.js +53 -0
- package/node_modules/randombytes/.travis.yml +15 -0
- package/node_modules/randombytes/.zuul.yml +1 -0
- package/node_modules/randombytes/LICENSE +21 -0
- package/node_modules/randombytes/README.md +14 -0
- package/node_modules/randombytes/browser.js +50 -0
- package/node_modules/randombytes/index.js +1 -0
- package/node_modules/randombytes/package.json +40 -0
- package/node_modules/randombytes/test.js +81 -0
- package/node_modules/readable-stream/CONTRIBUTING.md +38 -0
- package/node_modules/readable-stream/GOVERNANCE.md +136 -0
- package/node_modules/readable-stream/LICENSE +47 -0
- package/node_modules/readable-stream/README.md +106 -0
- package/node_modules/readable-stream/errors-browser.js +127 -0
- package/node_modules/readable-stream/errors.js +116 -0
- package/node_modules/readable-stream/experimentalWarning.js +17 -0
- package/node_modules/readable-stream/lib/_stream_duplex.js +139 -0
- package/node_modules/readable-stream/lib/_stream_passthrough.js +39 -0
- package/node_modules/readable-stream/lib/_stream_readable.js +1124 -0
- package/node_modules/readable-stream/lib/_stream_transform.js +201 -0
- package/node_modules/readable-stream/lib/_stream_writable.js +697 -0
- package/node_modules/readable-stream/lib/internal/streams/async_iterator.js +207 -0
- package/node_modules/readable-stream/lib/internal/streams/buffer_list.js +210 -0
- package/node_modules/readable-stream/lib/internal/streams/destroy.js +105 -0
- package/node_modules/readable-stream/lib/internal/streams/end-of-stream.js +104 -0
- package/node_modules/readable-stream/lib/internal/streams/from-browser.js +3 -0
- package/node_modules/readable-stream/lib/internal/streams/from.js +64 -0
- package/node_modules/readable-stream/lib/internal/streams/pipeline.js +97 -0
- package/node_modules/readable-stream/lib/internal/streams/state.js +27 -0
- package/node_modules/readable-stream/lib/internal/streams/stream-browser.js +1 -0
- package/node_modules/readable-stream/lib/internal/streams/stream.js +1 -0
- package/node_modules/readable-stream/package.json +72 -0
- package/node_modules/readable-stream/readable-browser.js +9 -0
- package/node_modules/readable-stream/readable.js +16 -0
- package/node_modules/require-directory/.jshintrc +67 -0
- package/node_modules/require-directory/.npmignore +1 -0
- package/node_modules/require-directory/.travis.yml +3 -0
- package/node_modules/require-directory/LICENSE +22 -0
- package/node_modules/require-directory/README.markdown +184 -0
- package/node_modules/require-directory/index.js +86 -0
- package/node_modules/require-directory/package.json +44 -0
- package/node_modules/require-main-filename/LICENSE.txt +14 -0
- package/node_modules/require-main-filename/README.md +26 -0
- package/node_modules/require-main-filename/index.js +18 -0
- package/node_modules/require-main-filename/package.json +39 -0
- package/node_modules/ripemd160/LICENSE +21 -0
- package/node_modules/ripemd160/README.md +27 -0
- package/node_modules/ripemd160/index.js +163 -0
- package/node_modules/ripemd160/package.json +41 -0
- package/node_modules/rlp/LICENSE +373 -0
- package/node_modules/rlp/README.md +58 -0
- package/node_modules/rlp/bin/rlp +35 -0
- package/node_modules/rlp/dist/index.d.ts +25 -0
- package/node_modules/rlp/dist/index.js +249 -0
- package/node_modules/rlp/dist/index.js.map +1 -0
- package/node_modules/rlp/dist/types.d.ts +9 -0
- package/node_modules/rlp/dist/types.js +3 -0
- package/node_modules/rlp/dist/types.js.map +1 -0
- package/node_modules/rlp/package.json +84 -0
- package/node_modules/safe-buffer/LICENSE +21 -0
- package/node_modules/safe-buffer/README.md +584 -0
- package/node_modules/safe-buffer/index.d.ts +187 -0
- package/node_modules/safe-buffer/index.js +65 -0
- package/node_modules/safe-buffer/package.json +55 -0
- package/node_modules/scrypt-js/LICENSE.txt +22 -0
- package/node_modules/scrypt-js/README.md +222 -0
- package/node_modules/scrypt-js/index.html +291 -0
- package/node_modules/scrypt-js/package.json +31 -0
- package/node_modules/scrypt-js/scrypt.d.ts +23 -0
- package/node_modules/scrypt-js/scrypt.js +488 -0
- package/node_modules/scrypt-js/thirdparty/buffer.js +1381 -0
- package/node_modules/scrypt-js/thirdparty/setImmediate.js +175 -0
- package/node_modules/scrypt-js/thirdparty/unorm.js +442 -0
- package/node_modules/secp256k1/API.md +116 -0
- package/node_modules/secp256k1/LICENSE +24 -0
- package/node_modules/secp256k1/README.md +117 -0
- package/node_modules/secp256k1/binding.gyp +100 -0
- package/node_modules/secp256k1/bindings.js +2 -0
- package/node_modules/secp256k1/elliptic.js +1 -0
- package/node_modules/secp256k1/index.js +5 -0
- package/node_modules/secp256k1/lib/elliptic.js +402 -0
- package/node_modules/secp256k1/lib/index.js +336 -0
- package/node_modules/secp256k1/package.json +47 -0
- package/node_modules/secp256k1/prebuilds/darwin-x64/node.napi.node +0 -0
- package/node_modules/secp256k1/prebuilds/linux-x64/node.napi.glibc.node +0 -0
- package/node_modules/secp256k1/prebuilds/linux-x64/node.napi.musl.node +0 -0
- package/node_modules/secp256k1/prebuilds/win32-x64/node.napi.node +0 -0
- package/node_modules/secp256k1/src/addon.cc +10 -0
- package/node_modules/secp256k1/src/secp256k1/.travis.yml +100 -0
- package/node_modules/secp256k1/src/secp256k1/COPYING +19 -0
- package/node_modules/secp256k1/src/secp256k1/Makefile.am +183 -0
- package/node_modules/secp256k1/src/secp256k1/README.md +78 -0
- package/node_modules/secp256k1/src/secp256k1/SECURITY.md +15 -0
- package/node_modules/secp256k1/src/secp256k1/TODO +3 -0
- package/node_modules/secp256k1/src/secp256k1/autogen.sh +3 -0
- package/node_modules/secp256k1/src/secp256k1/build-aux/m4/ax_jni_include_dir.m4 +145 -0
- package/node_modules/secp256k1/src/secp256k1/build-aux/m4/ax_prog_cc_for_build.m4 +125 -0
- package/node_modules/secp256k1/src/secp256k1/build-aux/m4/bitcoin_secp.m4 +68 -0
- package/node_modules/secp256k1/src/secp256k1/configure.ac +591 -0
- package/node_modules/secp256k1/src/secp256k1/contrib/lax_der_parsing.c +150 -0
- package/node_modules/secp256k1/src/secp256k1/contrib/lax_der_parsing.h +91 -0
- package/node_modules/secp256k1/src/secp256k1/contrib/lax_der_privatekey_parsing.c +113 -0
- package/node_modules/secp256k1/src/secp256k1/contrib/lax_der_privatekey_parsing.h +90 -0
- package/node_modules/secp256k1/src/secp256k1/include/secp256k1.h +708 -0
- package/node_modules/secp256k1/src/secp256k1/include/secp256k1_ecdh.h +55 -0
- package/node_modules/secp256k1/src/secp256k1/include/secp256k1_preallocated.h +128 -0
- package/node_modules/secp256k1/src/secp256k1/include/secp256k1_recovery.h +110 -0
- package/node_modules/secp256k1/src/secp256k1/libsecp256k1.pc.in +13 -0
- package/node_modules/secp256k1/src/secp256k1/sage/group_prover.sage +322 -0
- package/node_modules/secp256k1/src/secp256k1/sage/secp256k1.sage +306 -0
- package/node_modules/secp256k1/src/secp256k1/sage/weierstrass_prover.sage +264 -0
- package/node_modules/secp256k1/src/secp256k1/src/asm/field_10x26_arm.s +913 -0
- package/node_modules/secp256k1/src/secp256k1/src/basic-config.h +38 -0
- package/node_modules/secp256k1/src/secp256k1/src/bench.h +124 -0
- package/node_modules/secp256k1/src/secp256k1/src/bench_ecdh.c +54 -0
- package/node_modules/secp256k1/src/secp256k1/src/bench_ecmult.c +207 -0
- package/node_modules/secp256k1/src/secp256k1/src/bench_internal.c +379 -0
- package/node_modules/secp256k1/src/secp256k1/src/bench_recover.c +60 -0
- package/node_modules/secp256k1/src/secp256k1/src/bench_sign.c +56 -0
- package/node_modules/secp256k1/src/secp256k1/src/bench_verify.c +112 -0
- package/node_modules/secp256k1/src/secp256k1/src/ecdsa.h +21 -0
- package/node_modules/secp256k1/src/secp256k1/src/ecdsa_impl.h +319 -0
- package/node_modules/secp256k1/src/secp256k1/src/eckey.h +25 -0
- package/node_modules/secp256k1/src/secp256k1/src/eckey_impl.h +100 -0
- package/node_modules/secp256k1/src/secp256k1/src/ecmult.h +48 -0
- package/node_modules/secp256k1/src/secp256k1/src/ecmult_const.h +20 -0
- package/node_modules/secp256k1/src/secp256k1/src/ecmult_const_impl.h +261 -0
- package/node_modules/secp256k1/src/secp256k1/src/ecmult_gen.h +50 -0
- package/node_modules/secp256k1/src/secp256k1/src/ecmult_gen_impl.h +211 -0
- package/node_modules/secp256k1/src/secp256k1/src/ecmult_impl.h +1216 -0
- package/node_modules/secp256k1/src/secp256k1/src/field.h +132 -0
- package/node_modules/secp256k1/src/secp256k1/src/field_10x26.h +50 -0
- package/node_modules/secp256k1/src/secp256k1/src/field_10x26_impl.h +1162 -0
- package/node_modules/secp256k1/src/secp256k1/src/field_5x52.h +49 -0
- package/node_modules/secp256k1/src/secp256k1/src/field_5x52_asm_impl.h +502 -0
- package/node_modules/secp256k1/src/secp256k1/src/field_5x52_impl.h +496 -0
- package/node_modules/secp256k1/src/secp256k1/src/field_5x52_int128_impl.h +279 -0
- package/node_modules/secp256k1/src/secp256k1/src/field_impl.h +318 -0
- package/node_modules/secp256k1/src/secp256k1/src/gen_context.c +87 -0
- package/node_modules/secp256k1/src/secp256k1/src/group.h +142 -0
- package/node_modules/secp256k1/src/secp256k1/src/group_impl.h +705 -0
- package/node_modules/secp256k1/src/secp256k1/src/hash.h +41 -0
- package/node_modules/secp256k1/src/secp256k1/src/hash_impl.h +283 -0
- package/node_modules/secp256k1/src/secp256k1/src/java/org/bitcoin/NativeSecp256k1.java +446 -0
- package/node_modules/secp256k1/src/secp256k1/src/java/org/bitcoin/NativeSecp256k1Test.java +225 -0
- package/node_modules/secp256k1/src/secp256k1/src/java/org/bitcoin/NativeSecp256k1Util.java +45 -0
- package/node_modules/secp256k1/src/secp256k1/src/java/org/bitcoin/Secp256k1Context.java +51 -0
- package/node_modules/secp256k1/src/secp256k1/src/java/org_bitcoin_NativeSecp256k1.c +379 -0
- package/node_modules/secp256k1/src/secp256k1/src/java/org_bitcoin_NativeSecp256k1.h +119 -0
- package/node_modules/secp256k1/src/secp256k1/src/java/org_bitcoin_Secp256k1Context.c +15 -0
- package/node_modules/secp256k1/src/secp256k1/src/java/org_bitcoin_Secp256k1Context.h +22 -0
- package/node_modules/secp256k1/src/secp256k1/src/modules/ecdh/Makefile.am.include +8 -0
- package/node_modules/secp256k1/src/secp256k1/src/modules/ecdh/main_impl.h +67 -0
- package/node_modules/secp256k1/src/secp256k1/src/modules/ecdh/tests_impl.h +132 -0
- package/node_modules/secp256k1/src/secp256k1/src/modules/recovery/Makefile.am.include +8 -0
- package/node_modules/secp256k1/src/secp256k1/src/modules/recovery/main_impl.h +193 -0
- package/node_modules/secp256k1/src/secp256k1/src/modules/recovery/tests_impl.h +393 -0
- package/node_modules/secp256k1/src/secp256k1/src/num.h +74 -0
- package/node_modules/secp256k1/src/secp256k1/src/num_gmp.h +20 -0
- package/node_modules/secp256k1/src/secp256k1/src/num_gmp_impl.h +288 -0
- package/node_modules/secp256k1/src/secp256k1/src/num_impl.h +24 -0
- package/node_modules/secp256k1/src/secp256k1/src/scalar.h +106 -0
- package/node_modules/secp256k1/src/secp256k1/src/scalar_4x64.h +19 -0
- package/node_modules/secp256k1/src/secp256k1/src/scalar_4x64_impl.h +949 -0
- package/node_modules/secp256k1/src/secp256k1/src/scalar_8x32.h +19 -0
- package/node_modules/secp256k1/src/secp256k1/src/scalar_8x32_impl.h +721 -0
- package/node_modules/secp256k1/src/secp256k1/src/scalar_impl.h +333 -0
- package/node_modules/secp256k1/src/secp256k1/src/scalar_low.h +15 -0
- package/node_modules/secp256k1/src/secp256k1/src/scalar_low_impl.h +117 -0
- package/node_modules/secp256k1/src/secp256k1/src/scratch.h +42 -0
- package/node_modules/secp256k1/src/secp256k1/src/scratch_impl.h +88 -0
- package/node_modules/secp256k1/src/secp256k1/src/secp256k1.c +690 -0
- package/node_modules/secp256k1/src/secp256k1/src/testrand.h +38 -0
- package/node_modules/secp256k1/src/secp256k1/src/testrand_impl.h +110 -0
- package/node_modules/secp256k1/src/secp256k1/src/tests.c +5310 -0
- package/node_modules/secp256k1/src/secp256k1/src/tests_exhaustive.c +511 -0
- package/node_modules/secp256k1/src/secp256k1/src/util.h +162 -0
- package/node_modules/secp256k1/src/secp256k1.cc +415 -0
- package/node_modules/secp256k1/src/secp256k1.h +63 -0
- package/node_modules/semver/LICENSE +15 -0
- package/node_modules/semver/README.md +412 -0
- package/node_modules/semver/bin/semver +160 -0
- package/node_modules/semver/package.json +32 -0
- package/node_modules/semver/range.bnf +16 -0
- package/node_modules/semver/semver.js +1483 -0
- package/node_modules/set-blocking/LICENSE.txt +14 -0
- package/node_modules/set-blocking/README.md +31 -0
- package/node_modules/set-blocking/index.js +7 -0
- package/node_modules/set-blocking/package.json +46 -0
- package/node_modules/setimmediate/LICENSE.txt +20 -0
- package/node_modules/setimmediate/package.json +34 -0
- package/node_modules/setimmediate/setImmediate.js +186 -0
- package/node_modules/sha.js/.travis.yml +17 -0
- package/node_modules/sha.js/LICENSE +49 -0
- package/node_modules/sha.js/README.md +44 -0
- package/node_modules/sha.js/bin.js +41 -0
- package/node_modules/sha.js/hash.js +81 -0
- package/node_modules/sha.js/index.js +15 -0
- package/node_modules/sha.js/package.json +34 -0
- package/node_modules/sha.js/sha.js +94 -0
- package/node_modules/sha.js/sha1.js +99 -0
- package/node_modules/sha.js/sha224.js +53 -0
- package/node_modules/sha.js/sha256.js +135 -0
- package/node_modules/sha.js/sha384.js +57 -0
- package/node_modules/sha.js/sha512.js +260 -0
- package/node_modules/sha.js/test/hash.js +75 -0
- package/node_modules/sha.js/test/test.js +100 -0
- package/node_modules/sha.js/test/vectors.js +72 -0
- package/node_modules/shebang-command/index.js +19 -0
- package/node_modules/shebang-command/license +21 -0
- package/node_modules/shebang-command/package.json +43 -0
- package/node_modules/shebang-command/readme.md +39 -0
- package/node_modules/shebang-regex/index.js +2 -0
- package/node_modules/shebang-regex/license +21 -0
- package/node_modules/shebang-regex/package.json +36 -0
- package/node_modules/shebang-regex/readme.md +29 -0
- package/node_modules/signal-exit/LICENSE.txt +16 -0
- package/node_modules/signal-exit/README.md +39 -0
- package/node_modules/signal-exit/index.js +163 -0
- package/node_modules/signal-exit/package.json +42 -0
- package/node_modules/signal-exit/signals.js +53 -0
- package/node_modules/source-map/LICENSE +28 -0
- package/node_modules/source-map/README.md +742 -0
- package/node_modules/source-map/dist/source-map.debug.js +3234 -0
- package/node_modules/source-map/dist/source-map.js +3233 -0
- package/node_modules/source-map/dist/source-map.min.js +2 -0
- package/node_modules/source-map/dist/source-map.min.js.map +1 -0
- package/node_modules/source-map/lib/array-set.js +121 -0
- package/node_modules/source-map/lib/base64-vlq.js +140 -0
- package/node_modules/source-map/lib/base64.js +67 -0
- package/node_modules/source-map/lib/binary-search.js +111 -0
- package/node_modules/source-map/lib/mapping-list.js +79 -0
- package/node_modules/source-map/lib/quick-sort.js +114 -0
- package/node_modules/source-map/lib/source-map-consumer.js +1145 -0
- package/node_modules/source-map/lib/source-map-generator.js +425 -0
- package/node_modules/source-map/lib/source-node.js +413 -0
- package/node_modules/source-map/lib/util.js +488 -0
- package/node_modules/source-map/package.json +77 -0
- package/node_modules/source-map/source-map.d.ts +98 -0
- package/node_modules/source-map/source-map.js +8 -0
- package/node_modules/source-map-support/LICENSE.md +21 -0
- package/node_modules/source-map-support/README.md +284 -0
- package/node_modules/source-map-support/browser-source-map-support.js +113 -0
- package/node_modules/source-map-support/package.json +35 -0
- package/node_modules/source-map-support/register.js +1 -0
- package/node_modules/source-map-support/source-map-support.js +567 -0
- package/node_modules/string-width/index.js +39 -0
- package/node_modules/string-width/license +9 -0
- package/node_modules/string-width/package.json +60 -0
- package/node_modules/string-width/readme.md +45 -0
- package/node_modules/string_decoder/LICENSE +48 -0
- package/node_modules/string_decoder/README.md +47 -0
- package/node_modules/string_decoder/lib/string_decoder.js +296 -0
- package/node_modules/string_decoder/package.json +38 -0
- package/node_modules/strip-ansi/index.d.ts +15 -0
- package/node_modules/strip-ansi/index.js +7 -0
- package/node_modules/strip-ansi/license +9 -0
- package/node_modules/strip-ansi/package.json +58 -0
- package/node_modules/strip-ansi/readme.md +61 -0
- package/node_modules/strip-eof/index.js +15 -0
- package/node_modules/strip-eof/license +21 -0
- package/node_modules/strip-eof/package.json +43 -0
- package/node_modules/strip-eof/readme.md +28 -0
- package/node_modules/strip-hex-prefix/.editorconfig +7 -0
- package/node_modules/strip-hex-prefix/.gitattributes +106 -0
- package/node_modules/strip-hex-prefix/.npmignore +8 -0
- package/node_modules/strip-hex-prefix/.travis.yml +5 -0
- package/node_modules/strip-hex-prefix/CHANGELOG.md +7 -0
- package/node_modules/strip-hex-prefix/LICENSE +21 -0
- package/node_modules/strip-hex-prefix/README.md +106 -0
- package/node_modules/strip-hex-prefix/package.json +46 -0
- package/node_modules/strip-hex-prefix/src/index.js +14 -0
- package/node_modules/strip-hex-prefix/src/tests/test.index.js +47 -0
- package/node_modules/util-deprecate/History.md +16 -0
- package/node_modules/util-deprecate/LICENSE +24 -0
- package/node_modules/util-deprecate/README.md +53 -0
- package/node_modules/util-deprecate/browser.js +67 -0
- package/node_modules/util-deprecate/node.js +6 -0
- package/node_modules/util-deprecate/package.json +31 -0
- package/node_modules/which/LICENSE +15 -0
- package/node_modules/which/README.md +51 -0
- package/node_modules/which/bin/which +52 -0
- package/node_modules/which/package.json +34 -0
- package/node_modules/which/which.js +135 -0
- package/node_modules/which-module/LICENSE +13 -0
- package/node_modules/which-module/README.md +55 -0
- package/node_modules/which-module/index.js +9 -0
- package/node_modules/which-module/package.json +45 -0
- package/node_modules/wrap-ansi/index.js +188 -0
- package/node_modules/wrap-ansi/license +9 -0
- package/node_modules/wrap-ansi/package.json +65 -0
- package/node_modules/wrap-ansi/readme.md +108 -0
- package/node_modules/wrappy/LICENSE +15 -0
- package/node_modules/wrappy/README.md +36 -0
- package/node_modules/wrappy/package.json +33 -0
- package/node_modules/wrappy/wrappy.js +33 -0
- package/node_modules/y18n/LICENSE +13 -0
- package/node_modules/y18n/README.md +109 -0
- package/node_modules/y18n/index.js +188 -0
- package/node_modules/y18n/package.json +43 -0
- package/node_modules/yargs/LICENSE +22 -0
- package/node_modules/yargs/README.md +122 -0
- package/node_modules/yargs/index.js +32 -0
- package/node_modules/yargs/lib/apply-extends.js +53 -0
- package/node_modules/yargs/lib/argsert.js +68 -0
- package/node_modules/yargs/lib/command.js +437 -0
- package/node_modules/yargs/lib/completion-templates.js +49 -0
- package/node_modules/yargs/lib/completion.js +115 -0
- package/node_modules/yargs/lib/decamelize.js +32 -0
- package/node_modules/yargs/lib/is-promise.js +3 -0
- package/node_modules/yargs/lib/levenshtein.js +58 -0
- package/node_modules/yargs/lib/middleware.js +65 -0
- package/node_modules/yargs/lib/obj-filter.js +11 -0
- package/node_modules/yargs/lib/usage.js +540 -0
- package/node_modules/yargs/lib/validation.js +341 -0
- package/node_modules/yargs/lib/yerror.js +11 -0
- package/node_modules/yargs/locales/be.json +39 -0
- package/node_modules/yargs/locales/de.json +39 -0
- package/node_modules/yargs/locales/en.json +42 -0
- package/node_modules/yargs/locales/es.json +39 -0
- package/node_modules/yargs/locales/fr.json +37 -0
- package/node_modules/yargs/locales/hi.json +42 -0
- package/node_modules/yargs/locales/hu.json +39 -0
- package/node_modules/yargs/locales/id.json +43 -0
- package/node_modules/yargs/locales/it.json +39 -0
- package/node_modules/yargs/locales/ja.json +42 -0
- package/node_modules/yargs/locales/ko.json +42 -0
- package/node_modules/yargs/locales/nb.json +37 -0
- package/node_modules/yargs/locales/nl.json +42 -0
- package/node_modules/yargs/locales/nn.json +39 -0
- package/node_modules/yargs/locales/pirate.json +13 -0
- package/node_modules/yargs/locales/pl.json +42 -0
- package/node_modules/yargs/locales/pt.json +38 -0
- package/node_modules/yargs/locales/pt_BR.json +42 -0
- package/node_modules/yargs/locales/ru.json +39 -0
- package/node_modules/yargs/locales/th.json +39 -0
- package/node_modules/yargs/locales/tr.json +41 -0
- package/node_modules/yargs/locales/zh_CN.json +41 -0
- package/node_modules/yargs/locales/zh_TW.json +40 -0
- package/node_modules/yargs/package.json +83 -0
- package/node_modules/yargs/yargs.js +1205 -0
- package/node_modules/yargs-parser/LICENSE.txt +14 -0
- package/node_modules/yargs-parser/README.md +396 -0
- package/node_modules/yargs-parser/index.js +916 -0
- package/node_modules/yargs-parser/lib/tokenize-arg-string.js +40 -0
- package/node_modules/yargs-parser/package.json +51 -0
- package/package.json +73 -4
@@ -0,0 +1,2156 @@
|
|
1
|
+
declare module "fs" {
|
2
|
+
import * as stream from "stream";
|
3
|
+
import * as events from "events";
|
4
|
+
import { URL } from "url";
|
5
|
+
import * as promises from 'fs/promises';
|
6
|
+
|
7
|
+
export { promises };
|
8
|
+
/**
|
9
|
+
* Valid types for path values in "fs".
|
10
|
+
*/
|
11
|
+
export type PathLike = string | Buffer | URL;
|
12
|
+
|
13
|
+
export type NoParamCallback = (err: NodeJS.ErrnoException | null) => void;
|
14
|
+
|
15
|
+
export type BufferEncodingOption = 'buffer' | { encoding: 'buffer' };
|
16
|
+
|
17
|
+
export interface BaseEncodingOptions {
|
18
|
+
encoding?: BufferEncoding | null;
|
19
|
+
}
|
20
|
+
|
21
|
+
export type OpenMode = number | string;
|
22
|
+
|
23
|
+
export type Mode = number | string;
|
24
|
+
|
25
|
+
export interface StatsBase<T> {
|
26
|
+
isFile(): boolean;
|
27
|
+
isDirectory(): boolean;
|
28
|
+
isBlockDevice(): boolean;
|
29
|
+
isCharacterDevice(): boolean;
|
30
|
+
isSymbolicLink(): boolean;
|
31
|
+
isFIFO(): boolean;
|
32
|
+
isSocket(): boolean;
|
33
|
+
|
34
|
+
dev: T;
|
35
|
+
ino: T;
|
36
|
+
mode: T;
|
37
|
+
nlink: T;
|
38
|
+
uid: T;
|
39
|
+
gid: T;
|
40
|
+
rdev: T;
|
41
|
+
size: T;
|
42
|
+
blksize: T;
|
43
|
+
blocks: T;
|
44
|
+
atimeMs: T;
|
45
|
+
mtimeMs: T;
|
46
|
+
ctimeMs: T;
|
47
|
+
birthtimeMs: T;
|
48
|
+
atime: Date;
|
49
|
+
mtime: Date;
|
50
|
+
ctime: Date;
|
51
|
+
birthtime: Date;
|
52
|
+
}
|
53
|
+
|
54
|
+
export interface Stats extends StatsBase<number> {
|
55
|
+
}
|
56
|
+
|
57
|
+
export class Stats {
|
58
|
+
}
|
59
|
+
|
60
|
+
export class Dirent {
|
61
|
+
isFile(): boolean;
|
62
|
+
isDirectory(): boolean;
|
63
|
+
isBlockDevice(): boolean;
|
64
|
+
isCharacterDevice(): boolean;
|
65
|
+
isSymbolicLink(): boolean;
|
66
|
+
isFIFO(): boolean;
|
67
|
+
isSocket(): boolean;
|
68
|
+
name: string;
|
69
|
+
}
|
70
|
+
|
71
|
+
/**
|
72
|
+
* A class representing a directory stream.
|
73
|
+
*/
|
74
|
+
export class Dir {
|
75
|
+
readonly path: string;
|
76
|
+
|
77
|
+
/**
|
78
|
+
* Asynchronously iterates over the directory via `readdir(3)` until all entries have been read.
|
79
|
+
*/
|
80
|
+
[Symbol.asyncIterator](): AsyncIterableIterator<Dirent>;
|
81
|
+
|
82
|
+
/**
|
83
|
+
* Asynchronously close the directory's underlying resource handle.
|
84
|
+
* Subsequent reads will result in errors.
|
85
|
+
*/
|
86
|
+
close(): Promise<void>;
|
87
|
+
close(cb: NoParamCallback): void;
|
88
|
+
|
89
|
+
/**
|
90
|
+
* Synchronously close the directory's underlying resource handle.
|
91
|
+
* Subsequent reads will result in errors.
|
92
|
+
*/
|
93
|
+
closeSync(): void;
|
94
|
+
|
95
|
+
/**
|
96
|
+
* Asynchronously read the next directory entry via `readdir(3)` as an `Dirent`.
|
97
|
+
* After the read is completed, a value is returned that will be resolved with an `Dirent`, or `null` if there are no more directory entries to read.
|
98
|
+
* Directory entries returned by this function are in no particular order as provided by the operating system's underlying directory mechanisms.
|
99
|
+
*/
|
100
|
+
read(): Promise<Dirent | null>;
|
101
|
+
read(cb: (err: NodeJS.ErrnoException | null, dirEnt: Dirent | null) => void): void;
|
102
|
+
|
103
|
+
/**
|
104
|
+
* Synchronously read the next directory entry via `readdir(3)` as a `Dirent`.
|
105
|
+
* If there are no more directory entries to read, null will be returned.
|
106
|
+
* Directory entries returned by this function are in no particular order as provided by the operating system's underlying directory mechanisms.
|
107
|
+
*/
|
108
|
+
readSync(): Dirent;
|
109
|
+
}
|
110
|
+
|
111
|
+
export interface FSWatcher extends events.EventEmitter {
|
112
|
+
close(): void;
|
113
|
+
|
114
|
+
/**
|
115
|
+
* events.EventEmitter
|
116
|
+
* 1. change
|
117
|
+
* 2. error
|
118
|
+
*/
|
119
|
+
addListener(event: string, listener: (...args: any[]) => void): this;
|
120
|
+
addListener(event: "change", listener: (eventType: string, filename: string | Buffer) => void): this;
|
121
|
+
addListener(event: "error", listener: (error: Error) => void): this;
|
122
|
+
addListener(event: "close", listener: () => void): this;
|
123
|
+
|
124
|
+
on(event: string, listener: (...args: any[]) => void): this;
|
125
|
+
on(event: "change", listener: (eventType: string, filename: string | Buffer) => void): this;
|
126
|
+
on(event: "error", listener: (error: Error) => void): this;
|
127
|
+
on(event: "close", listener: () => void): this;
|
128
|
+
|
129
|
+
once(event: string, listener: (...args: any[]) => void): this;
|
130
|
+
once(event: "change", listener: (eventType: string, filename: string | Buffer) => void): this;
|
131
|
+
once(event: "error", listener: (error: Error) => void): this;
|
132
|
+
once(event: "close", listener: () => void): this;
|
133
|
+
|
134
|
+
prependListener(event: string, listener: (...args: any[]) => void): this;
|
135
|
+
prependListener(event: "change", listener: (eventType: string, filename: string | Buffer) => void): this;
|
136
|
+
prependListener(event: "error", listener: (error: Error) => void): this;
|
137
|
+
prependListener(event: "close", listener: () => void): this;
|
138
|
+
|
139
|
+
prependOnceListener(event: string, listener: (...args: any[]) => void): this;
|
140
|
+
prependOnceListener(event: "change", listener: (eventType: string, filename: string | Buffer) => void): this;
|
141
|
+
prependOnceListener(event: "error", listener: (error: Error) => void): this;
|
142
|
+
prependOnceListener(event: "close", listener: () => void): this;
|
143
|
+
}
|
144
|
+
|
145
|
+
export class ReadStream extends stream.Readable {
|
146
|
+
close(): void;
|
147
|
+
bytesRead: number;
|
148
|
+
path: string | Buffer;
|
149
|
+
pending: boolean;
|
150
|
+
|
151
|
+
/**
|
152
|
+
* events.EventEmitter
|
153
|
+
* 1. open
|
154
|
+
* 2. close
|
155
|
+
* 3. ready
|
156
|
+
*/
|
157
|
+
addListener(event: "close", listener: () => void): this;
|
158
|
+
addListener(event: "data", listener: (chunk: Buffer | string) => void): this;
|
159
|
+
addListener(event: "end", listener: () => void): this;
|
160
|
+
addListener(event: "error", listener: (err: Error) => void): this;
|
161
|
+
addListener(event: "open", listener: (fd: number) => void): this;
|
162
|
+
addListener(event: "pause", listener: () => void): this;
|
163
|
+
addListener(event: "readable", listener: () => void): this;
|
164
|
+
addListener(event: "ready", listener: () => void): this;
|
165
|
+
addListener(event: "resume", listener: () => void): this;
|
166
|
+
addListener(event: string | symbol, listener: (...args: any[]) => void): this;
|
167
|
+
|
168
|
+
on(event: "close", listener: () => void): this;
|
169
|
+
on(event: "data", listener: (chunk: Buffer | string) => void): this;
|
170
|
+
on(event: "end", listener: () => void): this;
|
171
|
+
on(event: "error", listener: (err: Error) => void): this;
|
172
|
+
on(event: "open", listener: (fd: number) => void): this;
|
173
|
+
on(event: "pause", listener: () => void): this;
|
174
|
+
on(event: "readable", listener: () => void): this;
|
175
|
+
on(event: "ready", listener: () => void): this;
|
176
|
+
on(event: "resume", listener: () => void): this;
|
177
|
+
on(event: string | symbol, listener: (...args: any[]) => void): this;
|
178
|
+
|
179
|
+
once(event: "close", listener: () => void): this;
|
180
|
+
once(event: "data", listener: (chunk: Buffer | string) => void): this;
|
181
|
+
once(event: "end", listener: () => void): this;
|
182
|
+
once(event: "error", listener: (err: Error) => void): this;
|
183
|
+
once(event: "open", listener: (fd: number) => void): this;
|
184
|
+
once(event: "pause", listener: () => void): this;
|
185
|
+
once(event: "readable", listener: () => void): this;
|
186
|
+
once(event: "ready", listener: () => void): this;
|
187
|
+
once(event: "resume", listener: () => void): this;
|
188
|
+
once(event: string | symbol, listener: (...args: any[]) => void): this;
|
189
|
+
|
190
|
+
prependListener(event: "close", listener: () => void): this;
|
191
|
+
prependListener(event: "data", listener: (chunk: Buffer | string) => void): this;
|
192
|
+
prependListener(event: "end", listener: () => void): this;
|
193
|
+
prependListener(event: "error", listener: (err: Error) => void): this;
|
194
|
+
prependListener(event: "open", listener: (fd: number) => void): this;
|
195
|
+
prependListener(event: "pause", listener: () => void): this;
|
196
|
+
prependListener(event: "readable", listener: () => void): this;
|
197
|
+
prependListener(event: "ready", listener: () => void): this;
|
198
|
+
prependListener(event: "resume", listener: () => void): this;
|
199
|
+
prependListener(event: string | symbol, listener: (...args: any[]) => void): this;
|
200
|
+
|
201
|
+
prependOnceListener(event: "close", listener: () => void): this;
|
202
|
+
prependOnceListener(event: "data", listener: (chunk: Buffer | string) => void): this;
|
203
|
+
prependOnceListener(event: "end", listener: () => void): this;
|
204
|
+
prependOnceListener(event: "error", listener: (err: Error) => void): this;
|
205
|
+
prependOnceListener(event: "open", listener: (fd: number) => void): this;
|
206
|
+
prependOnceListener(event: "pause", listener: () => void): this;
|
207
|
+
prependOnceListener(event: "readable", listener: () => void): this;
|
208
|
+
prependOnceListener(event: "ready", listener: () => void): this;
|
209
|
+
prependOnceListener(event: "resume", listener: () => void): this;
|
210
|
+
prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this;
|
211
|
+
}
|
212
|
+
|
213
|
+
export class WriteStream extends stream.Writable {
|
214
|
+
close(): void;
|
215
|
+
bytesWritten: number;
|
216
|
+
path: string | Buffer;
|
217
|
+
pending: boolean;
|
218
|
+
|
219
|
+
/**
|
220
|
+
* events.EventEmitter
|
221
|
+
* 1. open
|
222
|
+
* 2. close
|
223
|
+
* 3. ready
|
224
|
+
*/
|
225
|
+
addListener(event: "close", listener: () => void): this;
|
226
|
+
addListener(event: "drain", listener: () => void): this;
|
227
|
+
addListener(event: "error", listener: (err: Error) => void): this;
|
228
|
+
addListener(event: "finish", listener: () => void): this;
|
229
|
+
addListener(event: "open", listener: (fd: number) => void): this;
|
230
|
+
addListener(event: "pipe", listener: (src: stream.Readable) => void): this;
|
231
|
+
addListener(event: "ready", listener: () => void): this;
|
232
|
+
addListener(event: "unpipe", listener: (src: stream.Readable) => void): this;
|
233
|
+
addListener(event: string | symbol, listener: (...args: any[]) => void): this;
|
234
|
+
|
235
|
+
on(event: "close", listener: () => void): this;
|
236
|
+
on(event: "drain", listener: () => void): this;
|
237
|
+
on(event: "error", listener: (err: Error) => void): this;
|
238
|
+
on(event: "finish", listener: () => void): this;
|
239
|
+
on(event: "open", listener: (fd: number) => void): this;
|
240
|
+
on(event: "pipe", listener: (src: stream.Readable) => void): this;
|
241
|
+
on(event: "ready", listener: () => void): this;
|
242
|
+
on(event: "unpipe", listener: (src: stream.Readable) => void): this;
|
243
|
+
on(event: string | symbol, listener: (...args: any[]) => void): this;
|
244
|
+
|
245
|
+
once(event: "close", listener: () => void): this;
|
246
|
+
once(event: "drain", listener: () => void): this;
|
247
|
+
once(event: "error", listener: (err: Error) => void): this;
|
248
|
+
once(event: "finish", listener: () => void): this;
|
249
|
+
once(event: "open", listener: (fd: number) => void): this;
|
250
|
+
once(event: "pipe", listener: (src: stream.Readable) => void): this;
|
251
|
+
once(event: "ready", listener: () => void): this;
|
252
|
+
once(event: "unpipe", listener: (src: stream.Readable) => void): this;
|
253
|
+
once(event: string | symbol, listener: (...args: any[]) => void): this;
|
254
|
+
|
255
|
+
prependListener(event: "close", listener: () => void): this;
|
256
|
+
prependListener(event: "drain", listener: () => void): this;
|
257
|
+
prependListener(event: "error", listener: (err: Error) => void): this;
|
258
|
+
prependListener(event: "finish", listener: () => void): this;
|
259
|
+
prependListener(event: "open", listener: (fd: number) => void): this;
|
260
|
+
prependListener(event: "pipe", listener: (src: stream.Readable) => void): this;
|
261
|
+
prependListener(event: "ready", listener: () => void): this;
|
262
|
+
prependListener(event: "unpipe", listener: (src: stream.Readable) => void): this;
|
263
|
+
prependListener(event: string | symbol, listener: (...args: any[]) => void): this;
|
264
|
+
|
265
|
+
prependOnceListener(event: "close", listener: () => void): this;
|
266
|
+
prependOnceListener(event: "drain", listener: () => void): this;
|
267
|
+
prependOnceListener(event: "error", listener: (err: Error) => void): this;
|
268
|
+
prependOnceListener(event: "finish", listener: () => void): this;
|
269
|
+
prependOnceListener(event: "open", listener: (fd: number) => void): this;
|
270
|
+
prependOnceListener(event: "pipe", listener: (src: stream.Readable) => void): this;
|
271
|
+
prependOnceListener(event: "ready", listener: () => void): this;
|
272
|
+
prependOnceListener(event: "unpipe", listener: (src: stream.Readable) => void): this;
|
273
|
+
prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this;
|
274
|
+
}
|
275
|
+
|
276
|
+
/**
|
277
|
+
* Asynchronous rename(2) - Change the name or location of a file or directory.
|
278
|
+
* @param oldPath A path to a file. If a URL is provided, it must use the `file:` protocol.
|
279
|
+
* URL support is _experimental_.
|
280
|
+
* @param newPath A path to a file. If a URL is provided, it must use the `file:` protocol.
|
281
|
+
* URL support is _experimental_.
|
282
|
+
*/
|
283
|
+
export function rename(oldPath: PathLike, newPath: PathLike, callback: NoParamCallback): void;
|
284
|
+
|
285
|
+
// NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime.
|
286
|
+
export namespace rename {
|
287
|
+
/**
|
288
|
+
* Asynchronous rename(2) - Change the name or location of a file or directory.
|
289
|
+
* @param oldPath A path to a file. If a URL is provided, it must use the `file:` protocol.
|
290
|
+
* URL support is _experimental_.
|
291
|
+
* @param newPath A path to a file. If a URL is provided, it must use the `file:` protocol.
|
292
|
+
* URL support is _experimental_.
|
293
|
+
*/
|
294
|
+
function __promisify__(oldPath: PathLike, newPath: PathLike): Promise<void>;
|
295
|
+
}
|
296
|
+
|
297
|
+
/**
|
298
|
+
* Synchronous rename(2) - Change the name or location of a file or directory.
|
299
|
+
* @param oldPath A path to a file. If a URL is provided, it must use the `file:` protocol.
|
300
|
+
* URL support is _experimental_.
|
301
|
+
* @param newPath A path to a file. If a URL is provided, it must use the `file:` protocol.
|
302
|
+
* URL support is _experimental_.
|
303
|
+
*/
|
304
|
+
export function renameSync(oldPath: PathLike, newPath: PathLike): void;
|
305
|
+
|
306
|
+
/**
|
307
|
+
* Asynchronous truncate(2) - Truncate a file to a specified length.
|
308
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
309
|
+
* @param len If not specified, defaults to `0`.
|
310
|
+
*/
|
311
|
+
export function truncate(path: PathLike, len: number | undefined | null, callback: NoParamCallback): void;
|
312
|
+
|
313
|
+
/**
|
314
|
+
* Asynchronous truncate(2) - Truncate a file to a specified length.
|
315
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
316
|
+
* URL support is _experimental_.
|
317
|
+
*/
|
318
|
+
export function truncate(path: PathLike, callback: NoParamCallback): void;
|
319
|
+
|
320
|
+
// NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime.
|
321
|
+
export namespace truncate {
|
322
|
+
/**
|
323
|
+
* Asynchronous truncate(2) - Truncate a file to a specified length.
|
324
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
325
|
+
* @param len If not specified, defaults to `0`.
|
326
|
+
*/
|
327
|
+
function __promisify__(path: PathLike, len?: number | null): Promise<void>;
|
328
|
+
}
|
329
|
+
|
330
|
+
/**
|
331
|
+
* Synchronous truncate(2) - Truncate a file to a specified length.
|
332
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
333
|
+
* @param len If not specified, defaults to `0`.
|
334
|
+
*/
|
335
|
+
export function truncateSync(path: PathLike, len?: number | null): void;
|
336
|
+
|
337
|
+
/**
|
338
|
+
* Asynchronous ftruncate(2) - Truncate a file to a specified length.
|
339
|
+
* @param fd A file descriptor.
|
340
|
+
* @param len If not specified, defaults to `0`.
|
341
|
+
*/
|
342
|
+
export function ftruncate(fd: number, len: number | undefined | null, callback: NoParamCallback): void;
|
343
|
+
|
344
|
+
/**
|
345
|
+
* Asynchronous ftruncate(2) - Truncate a file to a specified length.
|
346
|
+
* @param fd A file descriptor.
|
347
|
+
*/
|
348
|
+
export function ftruncate(fd: number, callback: NoParamCallback): void;
|
349
|
+
|
350
|
+
// NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime.
|
351
|
+
export namespace ftruncate {
|
352
|
+
/**
|
353
|
+
* Asynchronous ftruncate(2) - Truncate a file to a specified length.
|
354
|
+
* @param fd A file descriptor.
|
355
|
+
* @param len If not specified, defaults to `0`.
|
356
|
+
*/
|
357
|
+
function __promisify__(fd: number, len?: number | null): Promise<void>;
|
358
|
+
}
|
359
|
+
|
360
|
+
/**
|
361
|
+
* Synchronous ftruncate(2) - Truncate a file to a specified length.
|
362
|
+
* @param fd A file descriptor.
|
363
|
+
* @param len If not specified, defaults to `0`.
|
364
|
+
*/
|
365
|
+
export function ftruncateSync(fd: number, len?: number | null): void;
|
366
|
+
|
367
|
+
/**
|
368
|
+
* Asynchronous chown(2) - Change ownership of a file.
|
369
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
370
|
+
*/
|
371
|
+
export function chown(path: PathLike, uid: number, gid: number, callback: NoParamCallback): void;
|
372
|
+
|
373
|
+
// NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime.
|
374
|
+
export namespace chown {
|
375
|
+
/**
|
376
|
+
* Asynchronous chown(2) - Change ownership of a file.
|
377
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
378
|
+
*/
|
379
|
+
function __promisify__(path: PathLike, uid: number, gid: number): Promise<void>;
|
380
|
+
}
|
381
|
+
|
382
|
+
/**
|
383
|
+
* Synchronous chown(2) - Change ownership of a file.
|
384
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
385
|
+
*/
|
386
|
+
export function chownSync(path: PathLike, uid: number, gid: number): void;
|
387
|
+
|
388
|
+
/**
|
389
|
+
* Asynchronous fchown(2) - Change ownership of a file.
|
390
|
+
* @param fd A file descriptor.
|
391
|
+
*/
|
392
|
+
export function fchown(fd: number, uid: number, gid: number, callback: NoParamCallback): void;
|
393
|
+
|
394
|
+
// NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime.
|
395
|
+
export namespace fchown {
|
396
|
+
/**
|
397
|
+
* Asynchronous fchown(2) - Change ownership of a file.
|
398
|
+
* @param fd A file descriptor.
|
399
|
+
*/
|
400
|
+
function __promisify__(fd: number, uid: number, gid: number): Promise<void>;
|
401
|
+
}
|
402
|
+
|
403
|
+
/**
|
404
|
+
* Synchronous fchown(2) - Change ownership of a file.
|
405
|
+
* @param fd A file descriptor.
|
406
|
+
*/
|
407
|
+
export function fchownSync(fd: number, uid: number, gid: number): void;
|
408
|
+
|
409
|
+
/**
|
410
|
+
* Asynchronous lchown(2) - Change ownership of a file. Does not dereference symbolic links.
|
411
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
412
|
+
*/
|
413
|
+
export function lchown(path: PathLike, uid: number, gid: number, callback: NoParamCallback): void;
|
414
|
+
|
415
|
+
// NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime.
|
416
|
+
export namespace lchown {
|
417
|
+
/**
|
418
|
+
* Asynchronous lchown(2) - Change ownership of a file. Does not dereference symbolic links.
|
419
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
420
|
+
*/
|
421
|
+
function __promisify__(path: PathLike, uid: number, gid: number): Promise<void>;
|
422
|
+
}
|
423
|
+
|
424
|
+
/**
|
425
|
+
* Synchronous lchown(2) - Change ownership of a file. Does not dereference symbolic links.
|
426
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
427
|
+
*/
|
428
|
+
export function lchownSync(path: PathLike, uid: number, gid: number): void;
|
429
|
+
|
430
|
+
/**
|
431
|
+
* Asynchronous chmod(2) - Change permissions of a file.
|
432
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
433
|
+
* @param mode A file mode. If a string is passed, it is parsed as an octal integer.
|
434
|
+
*/
|
435
|
+
export function chmod(path: PathLike, mode: Mode, callback: NoParamCallback): void;
|
436
|
+
|
437
|
+
// NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime.
|
438
|
+
export namespace chmod {
|
439
|
+
/**
|
440
|
+
* Asynchronous chmod(2) - Change permissions of a file.
|
441
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
442
|
+
* @param mode A file mode. If a string is passed, it is parsed as an octal integer.
|
443
|
+
*/
|
444
|
+
function __promisify__(path: PathLike, mode: Mode): Promise<void>;
|
445
|
+
}
|
446
|
+
|
447
|
+
/**
|
448
|
+
* Synchronous chmod(2) - Change permissions of a file.
|
449
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
450
|
+
* @param mode A file mode. If a string is passed, it is parsed as an octal integer.
|
451
|
+
*/
|
452
|
+
export function chmodSync(path: PathLike, mode: Mode): void;
|
453
|
+
|
454
|
+
/**
|
455
|
+
* Asynchronous fchmod(2) - Change permissions of a file.
|
456
|
+
* @param fd A file descriptor.
|
457
|
+
* @param mode A file mode. If a string is passed, it is parsed as an octal integer.
|
458
|
+
*/
|
459
|
+
export function fchmod(fd: number, mode: Mode, callback: NoParamCallback): void;
|
460
|
+
|
461
|
+
// NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime.
|
462
|
+
export namespace fchmod {
|
463
|
+
/**
|
464
|
+
* Asynchronous fchmod(2) - Change permissions of a file.
|
465
|
+
* @param fd A file descriptor.
|
466
|
+
* @param mode A file mode. If a string is passed, it is parsed as an octal integer.
|
467
|
+
*/
|
468
|
+
function __promisify__(fd: number, mode: Mode): Promise<void>;
|
469
|
+
}
|
470
|
+
|
471
|
+
/**
|
472
|
+
* Synchronous fchmod(2) - Change permissions of a file.
|
473
|
+
* @param fd A file descriptor.
|
474
|
+
* @param mode A file mode. If a string is passed, it is parsed as an octal integer.
|
475
|
+
*/
|
476
|
+
export function fchmodSync(fd: number, mode: Mode): void;
|
477
|
+
|
478
|
+
/**
|
479
|
+
* Asynchronous lchmod(2) - Change permissions of a file. Does not dereference symbolic links.
|
480
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
481
|
+
* @param mode A file mode. If a string is passed, it is parsed as an octal integer.
|
482
|
+
*/
|
483
|
+
export function lchmod(path: PathLike, mode: Mode, callback: NoParamCallback): void;
|
484
|
+
|
485
|
+
// NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime.
|
486
|
+
export namespace lchmod {
|
487
|
+
/**
|
488
|
+
* Asynchronous lchmod(2) - Change permissions of a file. Does not dereference symbolic links.
|
489
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
490
|
+
* @param mode A file mode. If a string is passed, it is parsed as an octal integer.
|
491
|
+
*/
|
492
|
+
function __promisify__(path: PathLike, mode: Mode): Promise<void>;
|
493
|
+
}
|
494
|
+
|
495
|
+
/**
|
496
|
+
* Synchronous lchmod(2) - Change permissions of a file. Does not dereference symbolic links.
|
497
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
498
|
+
* @param mode A file mode. If a string is passed, it is parsed as an octal integer.
|
499
|
+
*/
|
500
|
+
export function lchmodSync(path: PathLike, mode: Mode): void;
|
501
|
+
|
502
|
+
/**
|
503
|
+
* Asynchronous stat(2) - Get file status.
|
504
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
505
|
+
*/
|
506
|
+
export function stat(path: PathLike, options: BigIntOptions, callback: (err: NodeJS.ErrnoException | null, stats: BigIntStats) => void): void;
|
507
|
+
export function stat(path: PathLike, options: StatOptions, callback: (err: NodeJS.ErrnoException | null, stats: Stats | BigIntStats) => void): void;
|
508
|
+
export function stat(path: PathLike, callback: (err: NodeJS.ErrnoException | null, stats: Stats) => void): void;
|
509
|
+
|
510
|
+
// NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime.
|
511
|
+
export namespace stat {
|
512
|
+
/**
|
513
|
+
* Asynchronous stat(2) - Get file status.
|
514
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
515
|
+
*/
|
516
|
+
function __promisify__(path: PathLike, options: BigIntOptions): Promise<BigIntStats>;
|
517
|
+
function __promisify__(path: PathLike, options: StatOptions): Promise<Stats | BigIntStats>;
|
518
|
+
function __promisify__(path: PathLike): Promise<Stats>;
|
519
|
+
}
|
520
|
+
|
521
|
+
/**
|
522
|
+
* Synchronous stat(2) - Get file status.
|
523
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
524
|
+
*/
|
525
|
+
export function statSync(path: PathLike, options: BigIntOptions): BigIntStats;
|
526
|
+
export function statSync(path: PathLike, options: StatOptions): Stats | BigIntStats;
|
527
|
+
export function statSync(path: PathLike): Stats;
|
528
|
+
|
529
|
+
/**
|
530
|
+
* Asynchronous fstat(2) - Get file status.
|
531
|
+
* @param fd A file descriptor.
|
532
|
+
*/
|
533
|
+
export function fstat(fd: number, callback: (err: NodeJS.ErrnoException | null, stats: Stats) => void): void;
|
534
|
+
|
535
|
+
// NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime.
|
536
|
+
export namespace fstat {
|
537
|
+
/**
|
538
|
+
* Asynchronous fstat(2) - Get file status.
|
539
|
+
* @param fd A file descriptor.
|
540
|
+
*/
|
541
|
+
function __promisify__(fd: number): Promise<Stats>;
|
542
|
+
}
|
543
|
+
|
544
|
+
/**
|
545
|
+
* Synchronous fstat(2) - Get file status.
|
546
|
+
* @param fd A file descriptor.
|
547
|
+
*/
|
548
|
+
export function fstatSync(fd: number): Stats;
|
549
|
+
|
550
|
+
/**
|
551
|
+
* Asynchronous lstat(2) - Get file status. Does not dereference symbolic links.
|
552
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
553
|
+
*/
|
554
|
+
export function lstat(path: PathLike, callback: (err: NodeJS.ErrnoException | null, stats: Stats) => void): void;
|
555
|
+
|
556
|
+
// NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime.
|
557
|
+
export namespace lstat {
|
558
|
+
/**
|
559
|
+
* Asynchronous lstat(2) - Get file status. Does not dereference symbolic links.
|
560
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
561
|
+
*/
|
562
|
+
function __promisify__(path: PathLike): Promise<Stats>;
|
563
|
+
}
|
564
|
+
|
565
|
+
/**
|
566
|
+
* Synchronous lstat(2) - Get file status. Does not dereference symbolic links.
|
567
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
568
|
+
*/
|
569
|
+
export function lstatSync(path: PathLike): Stats;
|
570
|
+
|
571
|
+
/**
|
572
|
+
* Asynchronous link(2) - Create a new link (also known as a hard link) to an existing file.
|
573
|
+
* @param existingPath A path to a file. If a URL is provided, it must use the `file:` protocol.
|
574
|
+
* @param newPath A path to a file. If a URL is provided, it must use the `file:` protocol.
|
575
|
+
*/
|
576
|
+
export function link(existingPath: PathLike, newPath: PathLike, callback: NoParamCallback): void;
|
577
|
+
|
578
|
+
// NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime.
|
579
|
+
export namespace link {
|
580
|
+
/**
|
581
|
+
* Asynchronous link(2) - Create a new link (also known as a hard link) to an existing file.
|
582
|
+
* @param existingPath A path to a file. If a URL is provided, it must use the `file:` protocol.
|
583
|
+
* @param newPath A path to a file. If a URL is provided, it must use the `file:` protocol.
|
584
|
+
*/
|
585
|
+
function __promisify__(existingPath: PathLike, newPath: PathLike): Promise<void>;
|
586
|
+
}
|
587
|
+
|
588
|
+
/**
|
589
|
+
* Synchronous link(2) - Create a new link (also known as a hard link) to an existing file.
|
590
|
+
* @param existingPath A path to a file. If a URL is provided, it must use the `file:` protocol.
|
591
|
+
* @param newPath A path to a file. If a URL is provided, it must use the `file:` protocol.
|
592
|
+
*/
|
593
|
+
export function linkSync(existingPath: PathLike, newPath: PathLike): void;
|
594
|
+
|
595
|
+
/**
|
596
|
+
* Asynchronous symlink(2) - Create a new symbolic link to an existing file.
|
597
|
+
* @param target A path to an existing file. If a URL is provided, it must use the `file:` protocol.
|
598
|
+
* @param path A path to the new symlink. If a URL is provided, it must use the `file:` protocol.
|
599
|
+
* @param type May be set to `'dir'`, `'file'`, or `'junction'` (default is `'file'`) and is only available on Windows (ignored on other platforms).
|
600
|
+
* When using `'junction'`, the `target` argument will automatically be normalized to an absolute path.
|
601
|
+
*/
|
602
|
+
export function symlink(target: PathLike, path: PathLike, type: symlink.Type | undefined | null, callback: NoParamCallback): void;
|
603
|
+
|
604
|
+
/**
|
605
|
+
* Asynchronous symlink(2) - Create a new symbolic link to an existing file.
|
606
|
+
* @param target A path to an existing file. If a URL is provided, it must use the `file:` protocol.
|
607
|
+
* @param path A path to the new symlink. If a URL is provided, it must use the `file:` protocol.
|
608
|
+
*/
|
609
|
+
export function symlink(target: PathLike, path: PathLike, callback: NoParamCallback): void;
|
610
|
+
|
611
|
+
// NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime.
|
612
|
+
export namespace symlink {
|
613
|
+
/**
|
614
|
+
* Asynchronous symlink(2) - Create a new symbolic link to an existing file.
|
615
|
+
* @param target A path to an existing file. If a URL is provided, it must use the `file:` protocol.
|
616
|
+
* @param path A path to the new symlink. If a URL is provided, it must use the `file:` protocol.
|
617
|
+
* @param type May be set to `'dir'`, `'file'`, or `'junction'` (default is `'file'`) and is only available on Windows (ignored on other platforms).
|
618
|
+
* When using `'junction'`, the `target` argument will automatically be normalized to an absolute path.
|
619
|
+
*/
|
620
|
+
function __promisify__(target: PathLike, path: PathLike, type?: string | null): Promise<void>;
|
621
|
+
|
622
|
+
type Type = "dir" | "file" | "junction";
|
623
|
+
}
|
624
|
+
|
625
|
+
/**
|
626
|
+
* Synchronous symlink(2) - Create a new symbolic link to an existing file.
|
627
|
+
* @param target A path to an existing file. If a URL is provided, it must use the `file:` protocol.
|
628
|
+
* @param path A path to the new symlink. If a URL is provided, it must use the `file:` protocol.
|
629
|
+
* @param type May be set to `'dir'`, `'file'`, or `'junction'` (default is `'file'`) and is only available on Windows (ignored on other platforms).
|
630
|
+
* When using `'junction'`, the `target` argument will automatically be normalized to an absolute path.
|
631
|
+
*/
|
632
|
+
export function symlinkSync(target: PathLike, path: PathLike, type?: symlink.Type | null): void;
|
633
|
+
|
634
|
+
/**
|
635
|
+
* Asynchronous readlink(2) - read value of a symbolic link.
|
636
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
637
|
+
* @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
|
638
|
+
*/
|
639
|
+
export function readlink(
|
640
|
+
path: PathLike,
|
641
|
+
options: BaseEncodingOptions | BufferEncoding | undefined | null,
|
642
|
+
callback: (err: NodeJS.ErrnoException | null, linkString: string) => void
|
643
|
+
): void;
|
644
|
+
|
645
|
+
/**
|
646
|
+
* Asynchronous readlink(2) - read value of a symbolic link.
|
647
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
648
|
+
* @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
|
649
|
+
*/
|
650
|
+
export function readlink(path: PathLike, options: BufferEncodingOption, callback: (err: NodeJS.ErrnoException | null, linkString: Buffer) => void): void;
|
651
|
+
|
652
|
+
/**
|
653
|
+
* Asynchronous readlink(2) - read value of a symbolic link.
|
654
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
655
|
+
* @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
|
656
|
+
*/
|
657
|
+
export function readlink(path: PathLike, options: BaseEncodingOptions | string | undefined | null, callback: (err: NodeJS.ErrnoException | null, linkString: string | Buffer) => void): void;
|
658
|
+
|
659
|
+
/**
|
660
|
+
* Asynchronous readlink(2) - read value of a symbolic link.
|
661
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
662
|
+
*/
|
663
|
+
export function readlink(path: PathLike, callback: (err: NodeJS.ErrnoException | null, linkString: string) => void): void;
|
664
|
+
|
665
|
+
// NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime.
|
666
|
+
export namespace readlink {
|
667
|
+
/**
|
668
|
+
* Asynchronous readlink(2) - read value of a symbolic link.
|
669
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
670
|
+
* @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
|
671
|
+
*/
|
672
|
+
function __promisify__(path: PathLike, options?: BaseEncodingOptions | BufferEncoding | null): Promise<string>;
|
673
|
+
|
674
|
+
/**
|
675
|
+
* Asynchronous readlink(2) - read value of a symbolic link.
|
676
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
677
|
+
* @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
|
678
|
+
*/
|
679
|
+
function __promisify__(path: PathLike, options: BufferEncodingOption): Promise<Buffer>;
|
680
|
+
|
681
|
+
/**
|
682
|
+
* Asynchronous readlink(2) - read value of a symbolic link.
|
683
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
684
|
+
* @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
|
685
|
+
*/
|
686
|
+
function __promisify__(path: PathLike, options?: BaseEncodingOptions | string | null): Promise<string | Buffer>;
|
687
|
+
}
|
688
|
+
|
689
|
+
/**
|
690
|
+
* Synchronous readlink(2) - read value of a symbolic link.
|
691
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
692
|
+
* @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
|
693
|
+
*/
|
694
|
+
export function readlinkSync(path: PathLike, options?: BaseEncodingOptions | BufferEncoding | null): string;
|
695
|
+
|
696
|
+
/**
|
697
|
+
* Synchronous readlink(2) - read value of a symbolic link.
|
698
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
699
|
+
* @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
|
700
|
+
*/
|
701
|
+
export function readlinkSync(path: PathLike, options: BufferEncodingOption): Buffer;
|
702
|
+
|
703
|
+
/**
|
704
|
+
* Synchronous readlink(2) - read value of a symbolic link.
|
705
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
706
|
+
* @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
|
707
|
+
*/
|
708
|
+
export function readlinkSync(path: PathLike, options?: BaseEncodingOptions | string | null): string | Buffer;
|
709
|
+
|
710
|
+
/**
|
711
|
+
* Asynchronous realpath(3) - return the canonicalized absolute pathname.
|
712
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
713
|
+
* @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
|
714
|
+
*/
|
715
|
+
export function realpath(
|
716
|
+
path: PathLike,
|
717
|
+
options: BaseEncodingOptions | BufferEncoding | undefined | null,
|
718
|
+
callback: (err: NodeJS.ErrnoException | null, resolvedPath: string) => void
|
719
|
+
): void;
|
720
|
+
|
721
|
+
/**
|
722
|
+
* Asynchronous realpath(3) - return the canonicalized absolute pathname.
|
723
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
724
|
+
* @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
|
725
|
+
*/
|
726
|
+
export function realpath(path: PathLike, options: BufferEncodingOption, callback: (err: NodeJS.ErrnoException | null, resolvedPath: Buffer) => void): void;
|
727
|
+
|
728
|
+
/**
|
729
|
+
* Asynchronous realpath(3) - return the canonicalized absolute pathname.
|
730
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
731
|
+
* @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
|
732
|
+
*/
|
733
|
+
export function realpath(path: PathLike, options: BaseEncodingOptions | string | undefined | null, callback: (err: NodeJS.ErrnoException | null, resolvedPath: string | Buffer) => void): void;
|
734
|
+
|
735
|
+
/**
|
736
|
+
* Asynchronous realpath(3) - return the canonicalized absolute pathname.
|
737
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
738
|
+
*/
|
739
|
+
export function realpath(path: PathLike, callback: (err: NodeJS.ErrnoException | null, resolvedPath: string) => void): void;
|
740
|
+
|
741
|
+
// NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime.
|
742
|
+
export namespace realpath {
|
743
|
+
/**
|
744
|
+
* Asynchronous realpath(3) - return the canonicalized absolute pathname.
|
745
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
746
|
+
* @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
|
747
|
+
*/
|
748
|
+
function __promisify__(path: PathLike, options?: BaseEncodingOptions | BufferEncoding | null): Promise<string>;
|
749
|
+
|
750
|
+
/**
|
751
|
+
* Asynchronous realpath(3) - return the canonicalized absolute pathname.
|
752
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
753
|
+
* @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
|
754
|
+
*/
|
755
|
+
function __promisify__(path: PathLike, options: BufferEncodingOption): Promise<Buffer>;
|
756
|
+
|
757
|
+
/**
|
758
|
+
* Asynchronous realpath(3) - return the canonicalized absolute pathname.
|
759
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
760
|
+
* @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
|
761
|
+
*/
|
762
|
+
function __promisify__(path: PathLike, options?: BaseEncodingOptions | string | null): Promise<string | Buffer>;
|
763
|
+
|
764
|
+
function native(
|
765
|
+
path: PathLike,
|
766
|
+
options: BaseEncodingOptions | BufferEncoding | undefined | null,
|
767
|
+
callback: (err: NodeJS.ErrnoException | null, resolvedPath: string) => void
|
768
|
+
): void;
|
769
|
+
function native(path: PathLike, options: BufferEncodingOption, callback: (err: NodeJS.ErrnoException | null, resolvedPath: Buffer) => void): void;
|
770
|
+
function native(path: PathLike, options: BaseEncodingOptions | string | undefined | null, callback: (err: NodeJS.ErrnoException | null, resolvedPath: string | Buffer) => void): void;
|
771
|
+
function native(path: PathLike, callback: (err: NodeJS.ErrnoException | null, resolvedPath: string) => void): void;
|
772
|
+
}
|
773
|
+
|
774
|
+
/**
|
775
|
+
* Synchronous realpath(3) - return the canonicalized absolute pathname.
|
776
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
777
|
+
* @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
|
778
|
+
*/
|
779
|
+
export function realpathSync(path: PathLike, options?: BaseEncodingOptions | BufferEncoding | null): string;
|
780
|
+
|
781
|
+
/**
|
782
|
+
* Synchronous realpath(3) - return the canonicalized absolute pathname.
|
783
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
784
|
+
* @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
|
785
|
+
*/
|
786
|
+
export function realpathSync(path: PathLike, options: BufferEncodingOption): Buffer;
|
787
|
+
|
788
|
+
/**
|
789
|
+
* Synchronous realpath(3) - return the canonicalized absolute pathname.
|
790
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
791
|
+
* @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
|
792
|
+
*/
|
793
|
+
export function realpathSync(path: PathLike, options?: BaseEncodingOptions | string | null): string | Buffer;
|
794
|
+
|
795
|
+
export namespace realpathSync {
|
796
|
+
function native(path: PathLike, options?: BaseEncodingOptions | BufferEncoding | null): string;
|
797
|
+
function native(path: PathLike, options: BufferEncodingOption): Buffer;
|
798
|
+
function native(path: PathLike, options?: BaseEncodingOptions | string | null): string | Buffer;
|
799
|
+
}
|
800
|
+
|
801
|
+
/**
|
802
|
+
* Asynchronous unlink(2) - delete a name and possibly the file it refers to.
|
803
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
804
|
+
*/
|
805
|
+
export function unlink(path: PathLike, callback: NoParamCallback): void;
|
806
|
+
|
807
|
+
// NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime.
|
808
|
+
export namespace unlink {
|
809
|
+
/**
|
810
|
+
* Asynchronous unlink(2) - delete a name and possibly the file it refers to.
|
811
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
812
|
+
*/
|
813
|
+
function __promisify__(path: PathLike): Promise<void>;
|
814
|
+
}
|
815
|
+
|
816
|
+
/**
|
817
|
+
* Synchronous unlink(2) - delete a name and possibly the file it refers to.
|
818
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
819
|
+
*/
|
820
|
+
export function unlinkSync(path: PathLike): void;
|
821
|
+
|
822
|
+
export interface RmDirOptions {
|
823
|
+
/**
|
824
|
+
* If `true`, perform a recursive directory removal. In
|
825
|
+
* recursive mode, errors are not reported if `path` does not exist, and
|
826
|
+
* operations are retried on failure.
|
827
|
+
* @experimental
|
828
|
+
* @default false
|
829
|
+
*/
|
830
|
+
recursive?: boolean;
|
831
|
+
}
|
832
|
+
|
833
|
+
export interface RmDirAsyncOptions extends RmDirOptions {
|
834
|
+
/**
|
835
|
+
* The amount of time in milliseconds to wait between retries.
|
836
|
+
* This option is ignored if the `recursive` option is not `true`.
|
837
|
+
* @default 100
|
838
|
+
*/
|
839
|
+
retryDelay?: number;
|
840
|
+
/**
|
841
|
+
* If an `EBUSY`, `EMFILE`, `ENFILE`, `ENOTEMPTY`, or
|
842
|
+
* `EPERM` error is encountered, Node.js will retry the operation with a linear
|
843
|
+
* backoff wait of `retryDelay` ms longer on each try. This option represents the
|
844
|
+
* number of retries. This option is ignored if the `recursive` option is not
|
845
|
+
* `true`.
|
846
|
+
* @default 0
|
847
|
+
*/
|
848
|
+
maxRetries?: number;
|
849
|
+
}
|
850
|
+
|
851
|
+
/**
|
852
|
+
* Asynchronous rmdir(2) - delete a directory.
|
853
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
854
|
+
*/
|
855
|
+
export function rmdir(path: PathLike, callback: NoParamCallback): void;
|
856
|
+
export function rmdir(path: PathLike, options: RmDirAsyncOptions, callback: NoParamCallback): void;
|
857
|
+
|
858
|
+
// NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime.
|
859
|
+
export namespace rmdir {
|
860
|
+
/**
|
861
|
+
* Asynchronous rmdir(2) - delete a directory.
|
862
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
863
|
+
*/
|
864
|
+
function __promisify__(path: PathLike, options?: RmDirAsyncOptions): Promise<void>;
|
865
|
+
}
|
866
|
+
|
867
|
+
/**
|
868
|
+
* Synchronous rmdir(2) - delete a directory.
|
869
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
870
|
+
*/
|
871
|
+
export function rmdirSync(path: PathLike, options?: RmDirOptions): void;
|
872
|
+
|
873
|
+
export interface MakeDirectoryOptions {
|
874
|
+
/**
|
875
|
+
* Indicates whether parent folders should be created.
|
876
|
+
* If a folder was created, the path to the first created folder will be returned.
|
877
|
+
* @default false
|
878
|
+
*/
|
879
|
+
recursive?: boolean;
|
880
|
+
/**
|
881
|
+
* A file mode. If a string is passed, it is parsed as an octal integer. If not specified
|
882
|
+
* @default 0o777
|
883
|
+
*/
|
884
|
+
mode?: Mode;
|
885
|
+
}
|
886
|
+
|
887
|
+
/**
|
888
|
+
* Asynchronous mkdir(2) - create a directory.
|
889
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
890
|
+
* @param options Either the file mode, or an object optionally specifying the file mode and whether parent folders
|
891
|
+
* should be created. If a string is passed, it is parsed as an octal integer. If not specified, defaults to `0o777`.
|
892
|
+
*/
|
893
|
+
export function mkdir(path: PathLike, options: MakeDirectoryOptions & { recursive: true }, callback: (err: NodeJS.ErrnoException | null, path: string) => void): void;
|
894
|
+
|
895
|
+
/**
|
896
|
+
* Asynchronous mkdir(2) - create a directory.
|
897
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
898
|
+
* @param options Either the file mode, or an object optionally specifying the file mode and whether parent folders
|
899
|
+
* should be created. If a string is passed, it is parsed as an octal integer. If not specified, defaults to `0o777`.
|
900
|
+
*/
|
901
|
+
export function mkdir(path: PathLike, options: Mode | (MakeDirectoryOptions & { recursive?: false; }) | null | undefined, callback: NoParamCallback): void;
|
902
|
+
|
903
|
+
/**
|
904
|
+
* Asynchronous mkdir(2) - create a directory.
|
905
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
906
|
+
* @param options Either the file mode, or an object optionally specifying the file mode and whether parent folders
|
907
|
+
* should be created. If a string is passed, it is parsed as an octal integer. If not specified, defaults to `0o777`.
|
908
|
+
*/
|
909
|
+
export function mkdir(path: PathLike, options: Mode | MakeDirectoryOptions | null | undefined, callback: (err: NodeJS.ErrnoException | null, path: string | undefined) => void): void;
|
910
|
+
|
911
|
+
/**
|
912
|
+
* Asynchronous mkdir(2) - create a directory with a mode of `0o777`.
|
913
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
914
|
+
*/
|
915
|
+
export function mkdir(path: PathLike, callback: NoParamCallback): void;
|
916
|
+
|
917
|
+
// NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime.
|
918
|
+
export namespace mkdir {
|
919
|
+
/**
|
920
|
+
* Asynchronous mkdir(2) - create a directory.
|
921
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
922
|
+
* @param options Either the file mode, or an object optionally specifying the file mode and whether parent folders
|
923
|
+
* should be created. If a string is passed, it is parsed as an octal integer. If not specified, defaults to `0o777`.
|
924
|
+
*/
|
925
|
+
function __promisify__(path: PathLike, options: MakeDirectoryOptions & { recursive: true; }): Promise<string>;
|
926
|
+
|
927
|
+
/**
|
928
|
+
* Asynchronous mkdir(2) - create a directory.
|
929
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
930
|
+
* @param options Either the file mode, or an object optionally specifying the file mode and whether parent folders
|
931
|
+
* should be created. If a string is passed, it is parsed as an octal integer. If not specified, defaults to `0o777`.
|
932
|
+
*/
|
933
|
+
function __promisify__(path: PathLike, options?: Mode | (MakeDirectoryOptions & { recursive?: false; }) | null): Promise<void>;
|
934
|
+
|
935
|
+
/**
|
936
|
+
* Asynchronous mkdir(2) - create a directory.
|
937
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
938
|
+
* @param options Either the file mode, or an object optionally specifying the file mode and whether parent folders
|
939
|
+
* should be created. If a string is passed, it is parsed as an octal integer. If not specified, defaults to `0o777`.
|
940
|
+
*/
|
941
|
+
function __promisify__(path: PathLike, options?: Mode | MakeDirectoryOptions | null): Promise<string | undefined>;
|
942
|
+
}
|
943
|
+
|
944
|
+
/**
|
945
|
+
* Synchronous mkdir(2) - create a directory.
|
946
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
947
|
+
* @param options Either the file mode, or an object optionally specifying the file mode and whether parent folders
|
948
|
+
* should be created. If a string is passed, it is parsed as an octal integer. If not specified, defaults to `0o777`.
|
949
|
+
*/
|
950
|
+
export function mkdirSync(path: PathLike, options: MakeDirectoryOptions & { recursive: true; }): string;
|
951
|
+
|
952
|
+
/**
|
953
|
+
* Synchronous mkdir(2) - create a directory.
|
954
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
955
|
+
* @param options Either the file mode, or an object optionally specifying the file mode and whether parent folders
|
956
|
+
* should be created. If a string is passed, it is parsed as an octal integer. If not specified, defaults to `0o777`.
|
957
|
+
*/
|
958
|
+
export function mkdirSync(path: PathLike, options?: Mode | (MakeDirectoryOptions & { recursive?: false; }) | null): void;
|
959
|
+
|
960
|
+
/**
|
961
|
+
* Synchronous mkdir(2) - create a directory.
|
962
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
963
|
+
* @param options Either the file mode, or an object optionally specifying the file mode and whether parent folders
|
964
|
+
* should be created. If a string is passed, it is parsed as an octal integer. If not specified, defaults to `0o777`.
|
965
|
+
*/
|
966
|
+
export function mkdirSync(path: PathLike, options?: Mode | MakeDirectoryOptions | null): string | undefined;
|
967
|
+
|
968
|
+
/**
|
969
|
+
* Asynchronously creates a unique temporary directory.
|
970
|
+
* Generates six random characters to be appended behind a required prefix to create a unique temporary directory.
|
971
|
+
* @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
|
972
|
+
*/
|
973
|
+
export function mkdtemp(prefix: string, options: BaseEncodingOptions | BufferEncoding | undefined | null, callback: (err: NodeJS.ErrnoException | null, folder: string) => void): void;
|
974
|
+
|
975
|
+
/**
|
976
|
+
* Asynchronously creates a unique temporary directory.
|
977
|
+
* Generates six random characters to be appended behind a required prefix to create a unique temporary directory.
|
978
|
+
* @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
|
979
|
+
*/
|
980
|
+
export function mkdtemp(prefix: string, options: "buffer" | { encoding: "buffer" }, callback: (err: NodeJS.ErrnoException | null, folder: Buffer) => void): void;
|
981
|
+
|
982
|
+
/**
|
983
|
+
* Asynchronously creates a unique temporary directory.
|
984
|
+
* Generates six random characters to be appended behind a required prefix to create a unique temporary directory.
|
985
|
+
* @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
|
986
|
+
*/
|
987
|
+
export function mkdtemp(prefix: string, options: BaseEncodingOptions | string | undefined | null, callback: (err: NodeJS.ErrnoException | null, folder: string | Buffer) => void): void;
|
988
|
+
|
989
|
+
/**
|
990
|
+
* Asynchronously creates a unique temporary directory.
|
991
|
+
* Generates six random characters to be appended behind a required prefix to create a unique temporary directory.
|
992
|
+
*/
|
993
|
+
export function mkdtemp(prefix: string, callback: (err: NodeJS.ErrnoException | null, folder: string) => void): void;
|
994
|
+
|
995
|
+
// NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime.
|
996
|
+
export namespace mkdtemp {
|
997
|
+
/**
|
998
|
+
* Asynchronously creates a unique temporary directory.
|
999
|
+
* Generates six random characters to be appended behind a required prefix to create a unique temporary directory.
|
1000
|
+
* @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
|
1001
|
+
*/
|
1002
|
+
function __promisify__(prefix: string, options?: BaseEncodingOptions | BufferEncoding | null): Promise<string>;
|
1003
|
+
|
1004
|
+
/**
|
1005
|
+
* Asynchronously creates a unique temporary directory.
|
1006
|
+
* Generates six random characters to be appended behind a required prefix to create a unique temporary directory.
|
1007
|
+
* @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
|
1008
|
+
*/
|
1009
|
+
function __promisify__(prefix: string, options: BufferEncodingOption): Promise<Buffer>;
|
1010
|
+
|
1011
|
+
/**
|
1012
|
+
* Asynchronously creates a unique temporary directory.
|
1013
|
+
* Generates six random characters to be appended behind a required prefix to create a unique temporary directory.
|
1014
|
+
* @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
|
1015
|
+
*/
|
1016
|
+
function __promisify__(prefix: string, options?: BaseEncodingOptions | string | null): Promise<string | Buffer>;
|
1017
|
+
}
|
1018
|
+
|
1019
|
+
/**
|
1020
|
+
* Synchronously creates a unique temporary directory.
|
1021
|
+
* Generates six random characters to be appended behind a required prefix to create a unique temporary directory.
|
1022
|
+
* @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
|
1023
|
+
*/
|
1024
|
+
export function mkdtempSync(prefix: string, options?: BaseEncodingOptions | BufferEncoding | null): string;
|
1025
|
+
|
1026
|
+
/**
|
1027
|
+
* Synchronously creates a unique temporary directory.
|
1028
|
+
* Generates six random characters to be appended behind a required prefix to create a unique temporary directory.
|
1029
|
+
* @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
|
1030
|
+
*/
|
1031
|
+
export function mkdtempSync(prefix: string, options: BufferEncodingOption): Buffer;
|
1032
|
+
|
1033
|
+
/**
|
1034
|
+
* Synchronously creates a unique temporary directory.
|
1035
|
+
* Generates six random characters to be appended behind a required prefix to create a unique temporary directory.
|
1036
|
+
* @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
|
1037
|
+
*/
|
1038
|
+
export function mkdtempSync(prefix: string, options?: BaseEncodingOptions | string | null): string | Buffer;
|
1039
|
+
|
1040
|
+
/**
|
1041
|
+
* Asynchronous readdir(3) - read a directory.
|
1042
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
1043
|
+
* @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
|
1044
|
+
*/
|
1045
|
+
export function readdir(
|
1046
|
+
path: PathLike,
|
1047
|
+
options: { encoding: BufferEncoding | null; withFileTypes?: false } | BufferEncoding | undefined | null,
|
1048
|
+
callback: (err: NodeJS.ErrnoException | null, files: string[]) => void,
|
1049
|
+
): void;
|
1050
|
+
|
1051
|
+
/**
|
1052
|
+
* Asynchronous readdir(3) - read a directory.
|
1053
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
1054
|
+
* @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
|
1055
|
+
*/
|
1056
|
+
export function readdir(path: PathLike, options: { encoding: "buffer"; withFileTypes?: false } | "buffer", callback: (err: NodeJS.ErrnoException | null, files: Buffer[]) => void): void;
|
1057
|
+
|
1058
|
+
/**
|
1059
|
+
* Asynchronous readdir(3) - read a directory.
|
1060
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
1061
|
+
* @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
|
1062
|
+
*/
|
1063
|
+
export function readdir(
|
1064
|
+
path: PathLike,
|
1065
|
+
options: BaseEncodingOptions & { withFileTypes?: false } | BufferEncoding | undefined | null,
|
1066
|
+
callback: (err: NodeJS.ErrnoException | null, files: string[] | Buffer[]) => void,
|
1067
|
+
): void;
|
1068
|
+
|
1069
|
+
/**
|
1070
|
+
* Asynchronous readdir(3) - read a directory.
|
1071
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
1072
|
+
*/
|
1073
|
+
export function readdir(path: PathLike, callback: (err: NodeJS.ErrnoException | null, files: string[]) => void): void;
|
1074
|
+
|
1075
|
+
/**
|
1076
|
+
* Asynchronous readdir(3) - read a directory.
|
1077
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
1078
|
+
* @param options If called with `withFileTypes: true` the result data will be an array of Dirent.
|
1079
|
+
*/
|
1080
|
+
export function readdir(path: PathLike, options: BaseEncodingOptions & { withFileTypes: true }, callback: (err: NodeJS.ErrnoException | null, files: Dirent[]) => void): void;
|
1081
|
+
|
1082
|
+
// NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime.
|
1083
|
+
export namespace readdir {
|
1084
|
+
/**
|
1085
|
+
* Asynchronous readdir(3) - read a directory.
|
1086
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
1087
|
+
* @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
|
1088
|
+
*/
|
1089
|
+
function __promisify__(path: PathLike, options?: { encoding: BufferEncoding | null; withFileTypes?: false } | BufferEncoding | null): Promise<string[]>;
|
1090
|
+
|
1091
|
+
/**
|
1092
|
+
* Asynchronous readdir(3) - read a directory.
|
1093
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
1094
|
+
* @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
|
1095
|
+
*/
|
1096
|
+
function __promisify__(path: PathLike, options: "buffer" | { encoding: "buffer"; withFileTypes?: false }): Promise<Buffer[]>;
|
1097
|
+
|
1098
|
+
/**
|
1099
|
+
* Asynchronous readdir(3) - read a directory.
|
1100
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
1101
|
+
* @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
|
1102
|
+
*/
|
1103
|
+
function __promisify__(path: PathLike, options?: BaseEncodingOptions & { withFileTypes?: false } | BufferEncoding | null): Promise<string[] | Buffer[]>;
|
1104
|
+
|
1105
|
+
/**
|
1106
|
+
* Asynchronous readdir(3) - read a directory.
|
1107
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
1108
|
+
* @param options If called with `withFileTypes: true` the result data will be an array of Dirent
|
1109
|
+
*/
|
1110
|
+
function __promisify__(path: PathLike, options: BaseEncodingOptions & { withFileTypes: true }): Promise<Dirent[]>;
|
1111
|
+
}
|
1112
|
+
|
1113
|
+
/**
|
1114
|
+
* Synchronous readdir(3) - read a directory.
|
1115
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
1116
|
+
* @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
|
1117
|
+
*/
|
1118
|
+
export function readdirSync(path: PathLike, options?: { encoding: BufferEncoding | null; withFileTypes?: false } | BufferEncoding | null): string[];
|
1119
|
+
|
1120
|
+
/**
|
1121
|
+
* Synchronous readdir(3) - read a directory.
|
1122
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
1123
|
+
* @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
|
1124
|
+
*/
|
1125
|
+
export function readdirSync(path: PathLike, options: { encoding: "buffer"; withFileTypes?: false } | "buffer"): Buffer[];
|
1126
|
+
|
1127
|
+
/**
|
1128
|
+
* Synchronous readdir(3) - read a directory.
|
1129
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
1130
|
+
* @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
|
1131
|
+
*/
|
1132
|
+
export function readdirSync(path: PathLike, options?: BaseEncodingOptions & { withFileTypes?: false } | BufferEncoding | null): string[] | Buffer[];
|
1133
|
+
|
1134
|
+
/**
|
1135
|
+
* Synchronous readdir(3) - read a directory.
|
1136
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
1137
|
+
* @param options If called with `withFileTypes: true` the result data will be an array of Dirent.
|
1138
|
+
*/
|
1139
|
+
export function readdirSync(path: PathLike, options: BaseEncodingOptions & { withFileTypes: true }): Dirent[];
|
1140
|
+
|
1141
|
+
/**
|
1142
|
+
* Asynchronous close(2) - close a file descriptor.
|
1143
|
+
* @param fd A file descriptor.
|
1144
|
+
*/
|
1145
|
+
export function close(fd: number, callback: NoParamCallback): void;
|
1146
|
+
|
1147
|
+
// NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime.
|
1148
|
+
export namespace close {
|
1149
|
+
/**
|
1150
|
+
* Asynchronous close(2) - close a file descriptor.
|
1151
|
+
* @param fd A file descriptor.
|
1152
|
+
*/
|
1153
|
+
function __promisify__(fd: number): Promise<void>;
|
1154
|
+
}
|
1155
|
+
|
1156
|
+
/**
|
1157
|
+
* Synchronous close(2) - close a file descriptor.
|
1158
|
+
* @param fd A file descriptor.
|
1159
|
+
*/
|
1160
|
+
export function closeSync(fd: number): void;
|
1161
|
+
|
1162
|
+
/**
|
1163
|
+
* Asynchronous open(2) - open and possibly create a file.
|
1164
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
1165
|
+
* @param mode A file mode. If a string is passed, it is parsed as an octal integer. If not supplied, defaults to `0o666`.
|
1166
|
+
*/
|
1167
|
+
export function open(path: PathLike, flags: OpenMode, mode: Mode | undefined | null, callback: (err: NodeJS.ErrnoException | null, fd: number) => void): void;
|
1168
|
+
|
1169
|
+
/**
|
1170
|
+
* Asynchronous open(2) - open and possibly create a file. If the file is created, its mode will be `0o666`.
|
1171
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
1172
|
+
*/
|
1173
|
+
export function open(path: PathLike, flags: OpenMode, callback: (err: NodeJS.ErrnoException | null, fd: number) => void): void;
|
1174
|
+
|
1175
|
+
// NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime.
|
1176
|
+
export namespace open {
|
1177
|
+
/**
|
1178
|
+
* Asynchronous open(2) - open and possibly create a file.
|
1179
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
1180
|
+
* @param mode A file mode. If a string is passed, it is parsed as an octal integer. If not supplied, defaults to `0o666`.
|
1181
|
+
*/
|
1182
|
+
function __promisify__(path: PathLike, flags: OpenMode, mode?: Mode | null): Promise<number>;
|
1183
|
+
}
|
1184
|
+
|
1185
|
+
/**
|
1186
|
+
* Synchronous open(2) - open and possibly create a file, returning a file descriptor..
|
1187
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
1188
|
+
* @param mode A file mode. If a string is passed, it is parsed as an octal integer. If not supplied, defaults to `0o666`.
|
1189
|
+
*/
|
1190
|
+
export function openSync(path: PathLike, flags: OpenMode, mode?: Mode | null): number;
|
1191
|
+
|
1192
|
+
/**
|
1193
|
+
* Asynchronously change file timestamps of the file referenced by the supplied path.
|
1194
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
1195
|
+
* @param atime The last access time. If a string is provided, it will be coerced to number.
|
1196
|
+
* @param mtime The last modified time. If a string is provided, it will be coerced to number.
|
1197
|
+
*/
|
1198
|
+
export function utimes(path: PathLike, atime: string | number | Date, mtime: string | number | Date, callback: NoParamCallback): void;
|
1199
|
+
|
1200
|
+
// NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime.
|
1201
|
+
export namespace utimes {
|
1202
|
+
/**
|
1203
|
+
* Asynchronously change file timestamps of the file referenced by the supplied path.
|
1204
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
1205
|
+
* @param atime The last access time. If a string is provided, it will be coerced to number.
|
1206
|
+
* @param mtime The last modified time. If a string is provided, it will be coerced to number.
|
1207
|
+
*/
|
1208
|
+
function __promisify__(path: PathLike, atime: string | number | Date, mtime: string | number | Date): Promise<void>;
|
1209
|
+
}
|
1210
|
+
|
1211
|
+
/**
|
1212
|
+
* Synchronously change file timestamps of the file referenced by the supplied path.
|
1213
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
1214
|
+
* @param atime The last access time. If a string is provided, it will be coerced to number.
|
1215
|
+
* @param mtime The last modified time. If a string is provided, it will be coerced to number.
|
1216
|
+
*/
|
1217
|
+
export function utimesSync(path: PathLike, atime: string | number | Date, mtime: string | number | Date): void;
|
1218
|
+
|
1219
|
+
/**
|
1220
|
+
* Asynchronously change file timestamps of the file referenced by the supplied file descriptor.
|
1221
|
+
* @param fd A file descriptor.
|
1222
|
+
* @param atime The last access time. If a string is provided, it will be coerced to number.
|
1223
|
+
* @param mtime The last modified time. If a string is provided, it will be coerced to number.
|
1224
|
+
*/
|
1225
|
+
export function futimes(fd: number, atime: string | number | Date, mtime: string | number | Date, callback: NoParamCallback): void;
|
1226
|
+
|
1227
|
+
// NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime.
|
1228
|
+
export namespace futimes {
|
1229
|
+
/**
|
1230
|
+
* Asynchronously change file timestamps of the file referenced by the supplied file descriptor.
|
1231
|
+
* @param fd A file descriptor.
|
1232
|
+
* @param atime The last access time. If a string is provided, it will be coerced to number.
|
1233
|
+
* @param mtime The last modified time. If a string is provided, it will be coerced to number.
|
1234
|
+
*/
|
1235
|
+
function __promisify__(fd: number, atime: string | number | Date, mtime: string | number | Date): Promise<void>;
|
1236
|
+
}
|
1237
|
+
|
1238
|
+
/**
|
1239
|
+
* Synchronously change file timestamps of the file referenced by the supplied file descriptor.
|
1240
|
+
* @param fd A file descriptor.
|
1241
|
+
* @param atime The last access time. If a string is provided, it will be coerced to number.
|
1242
|
+
* @param mtime The last modified time. If a string is provided, it will be coerced to number.
|
1243
|
+
*/
|
1244
|
+
export function futimesSync(fd: number, atime: string | number | Date, mtime: string | number | Date): void;
|
1245
|
+
|
1246
|
+
/**
|
1247
|
+
* Asynchronous fsync(2) - synchronize a file's in-core state with the underlying storage device.
|
1248
|
+
* @param fd A file descriptor.
|
1249
|
+
*/
|
1250
|
+
export function fsync(fd: number, callback: NoParamCallback): void;
|
1251
|
+
|
1252
|
+
// NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime.
|
1253
|
+
export namespace fsync {
|
1254
|
+
/**
|
1255
|
+
* Asynchronous fsync(2) - synchronize a file's in-core state with the underlying storage device.
|
1256
|
+
* @param fd A file descriptor.
|
1257
|
+
*/
|
1258
|
+
function __promisify__(fd: number): Promise<void>;
|
1259
|
+
}
|
1260
|
+
|
1261
|
+
/**
|
1262
|
+
* Synchronous fsync(2) - synchronize a file's in-core state with the underlying storage device.
|
1263
|
+
* @param fd A file descriptor.
|
1264
|
+
*/
|
1265
|
+
export function fsyncSync(fd: number): void;
|
1266
|
+
|
1267
|
+
/**
|
1268
|
+
* Asynchronously writes `buffer` to the file referenced by the supplied file descriptor.
|
1269
|
+
* @param fd A file descriptor.
|
1270
|
+
* @param offset The part of the buffer to be written. If not supplied, defaults to `0`.
|
1271
|
+
* @param length The number of bytes to write. If not supplied, defaults to `buffer.length - offset`.
|
1272
|
+
* @param position The offset from the beginning of the file where this data should be written. If not supplied, defaults to the current position.
|
1273
|
+
*/
|
1274
|
+
export function write<TBuffer extends NodeJS.ArrayBufferView>(
|
1275
|
+
fd: number,
|
1276
|
+
buffer: TBuffer,
|
1277
|
+
offset: number | undefined | null,
|
1278
|
+
length: number | undefined | null,
|
1279
|
+
position: number | undefined | null,
|
1280
|
+
callback: (err: NodeJS.ErrnoException | null, written: number, buffer: TBuffer) => void,
|
1281
|
+
): void;
|
1282
|
+
|
1283
|
+
/**
|
1284
|
+
* Asynchronously writes `buffer` to the file referenced by the supplied file descriptor.
|
1285
|
+
* @param fd A file descriptor.
|
1286
|
+
* @param offset The part of the buffer to be written. If not supplied, defaults to `0`.
|
1287
|
+
* @param length The number of bytes to write. If not supplied, defaults to `buffer.length - offset`.
|
1288
|
+
*/
|
1289
|
+
export function write<TBuffer extends NodeJS.ArrayBufferView>(
|
1290
|
+
fd: number,
|
1291
|
+
buffer: TBuffer,
|
1292
|
+
offset: number | undefined | null,
|
1293
|
+
length: number | undefined | null,
|
1294
|
+
callback: (err: NodeJS.ErrnoException | null, written: number, buffer: TBuffer) => void,
|
1295
|
+
): void;
|
1296
|
+
|
1297
|
+
/**
|
1298
|
+
* Asynchronously writes `buffer` to the file referenced by the supplied file descriptor.
|
1299
|
+
* @param fd A file descriptor.
|
1300
|
+
* @param offset The part of the buffer to be written. If not supplied, defaults to `0`.
|
1301
|
+
*/
|
1302
|
+
export function write<TBuffer extends NodeJS.ArrayBufferView>(
|
1303
|
+
fd: number,
|
1304
|
+
buffer: TBuffer,
|
1305
|
+
offset: number | undefined | null,
|
1306
|
+
callback: (err: NodeJS.ErrnoException | null, written: number, buffer: TBuffer) => void
|
1307
|
+
): void;
|
1308
|
+
|
1309
|
+
/**
|
1310
|
+
* Asynchronously writes `buffer` to the file referenced by the supplied file descriptor.
|
1311
|
+
* @param fd A file descriptor.
|
1312
|
+
*/
|
1313
|
+
export function write<TBuffer extends NodeJS.ArrayBufferView>(fd: number, buffer: TBuffer, callback: (err: NodeJS.ErrnoException | null, written: number, buffer: TBuffer) => void): void;
|
1314
|
+
|
1315
|
+
/**
|
1316
|
+
* Asynchronously writes `string` to the file referenced by the supplied file descriptor.
|
1317
|
+
* @param fd A file descriptor.
|
1318
|
+
* @param string A string to write.
|
1319
|
+
* @param position The offset from the beginning of the file where this data should be written. If not supplied, defaults to the current position.
|
1320
|
+
* @param encoding The expected string encoding.
|
1321
|
+
*/
|
1322
|
+
export function write(
|
1323
|
+
fd: number,
|
1324
|
+
string: string,
|
1325
|
+
position: number | undefined | null,
|
1326
|
+
encoding: BufferEncoding | undefined | null,
|
1327
|
+
callback: (err: NodeJS.ErrnoException | null, written: number, str: string) => void,
|
1328
|
+
): void;
|
1329
|
+
|
1330
|
+
/**
|
1331
|
+
* Asynchronously writes `string` to the file referenced by the supplied file descriptor.
|
1332
|
+
* @param fd A file descriptor.
|
1333
|
+
* @param string A string to write.
|
1334
|
+
* @param position The offset from the beginning of the file where this data should be written. If not supplied, defaults to the current position.
|
1335
|
+
*/
|
1336
|
+
export function write(fd: number, string: string, position: number | undefined | null, callback: (err: NodeJS.ErrnoException | null, written: number, str: string) => void): void;
|
1337
|
+
|
1338
|
+
/**
|
1339
|
+
* Asynchronously writes `string` to the file referenced by the supplied file descriptor.
|
1340
|
+
* @param fd A file descriptor.
|
1341
|
+
* @param string A string to write.
|
1342
|
+
*/
|
1343
|
+
export function write(fd: number, string: string, callback: (err: NodeJS.ErrnoException | null, written: number, str: string) => void): void;
|
1344
|
+
|
1345
|
+
// NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime.
|
1346
|
+
export namespace write {
|
1347
|
+
/**
|
1348
|
+
* Asynchronously writes `buffer` to the file referenced by the supplied file descriptor.
|
1349
|
+
* @param fd A file descriptor.
|
1350
|
+
* @param offset The part of the buffer to be written. If not supplied, defaults to `0`.
|
1351
|
+
* @param length The number of bytes to write. If not supplied, defaults to `buffer.length - offset`.
|
1352
|
+
* @param position The offset from the beginning of the file where this data should be written. If not supplied, defaults to the current position.
|
1353
|
+
*/
|
1354
|
+
function __promisify__<TBuffer extends NodeJS.ArrayBufferView>(
|
1355
|
+
fd: number,
|
1356
|
+
buffer?: TBuffer,
|
1357
|
+
offset?: number,
|
1358
|
+
length?: number,
|
1359
|
+
position?: number | null,
|
1360
|
+
): Promise<{ bytesWritten: number, buffer: TBuffer }>;
|
1361
|
+
|
1362
|
+
/**
|
1363
|
+
* Asynchronously writes `string` to the file referenced by the supplied file descriptor.
|
1364
|
+
* @param fd A file descriptor.
|
1365
|
+
* @param string A string to write.
|
1366
|
+
* @param position The offset from the beginning of the file where this data should be written. If not supplied, defaults to the current position.
|
1367
|
+
* @param encoding The expected string encoding.
|
1368
|
+
*/
|
1369
|
+
function __promisify__(fd: number, string: string, position?: number | null, encoding?: BufferEncoding | null): Promise<{ bytesWritten: number, buffer: string }>;
|
1370
|
+
}
|
1371
|
+
|
1372
|
+
/**
|
1373
|
+
* Synchronously writes `buffer` to the file referenced by the supplied file descriptor, returning the number of bytes written.
|
1374
|
+
* @param fd A file descriptor.
|
1375
|
+
* @param offset The part of the buffer to be written. If not supplied, defaults to `0`.
|
1376
|
+
* @param length The number of bytes to write. If not supplied, defaults to `buffer.length - offset`.
|
1377
|
+
* @param position The offset from the beginning of the file where this data should be written. If not supplied, defaults to the current position.
|
1378
|
+
*/
|
1379
|
+
export function writeSync(fd: number, buffer: NodeJS.ArrayBufferView, offset?: number | null, length?: number | null, position?: number | null): number;
|
1380
|
+
|
1381
|
+
/**
|
1382
|
+
* Synchronously writes `string` to the file referenced by the supplied file descriptor, returning the number of bytes written.
|
1383
|
+
* @param fd A file descriptor.
|
1384
|
+
* @param string A string to write.
|
1385
|
+
* @param position The offset from the beginning of the file where this data should be written. If not supplied, defaults to the current position.
|
1386
|
+
* @param encoding The expected string encoding.
|
1387
|
+
*/
|
1388
|
+
export function writeSync(fd: number, string: string, position?: number | null, encoding?: BufferEncoding | null): number;
|
1389
|
+
|
1390
|
+
/**
|
1391
|
+
* Asynchronously reads data from the file referenced by the supplied file descriptor.
|
1392
|
+
* @param fd A file descriptor.
|
1393
|
+
* @param buffer The buffer that the data will be written to.
|
1394
|
+
* @param offset The offset in the buffer at which to start writing.
|
1395
|
+
* @param length The number of bytes to read.
|
1396
|
+
* @param position The offset from the beginning of the file from which data should be read. If `null`, data will be read from the current position.
|
1397
|
+
*/
|
1398
|
+
export function read<TBuffer extends NodeJS.ArrayBufferView>(
|
1399
|
+
fd: number,
|
1400
|
+
buffer: TBuffer,
|
1401
|
+
offset: number,
|
1402
|
+
length: number,
|
1403
|
+
position: number | null,
|
1404
|
+
callback: (err: NodeJS.ErrnoException | null, bytesRead: number, buffer: TBuffer) => void,
|
1405
|
+
): void;
|
1406
|
+
|
1407
|
+
// NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime.
|
1408
|
+
export namespace read {
|
1409
|
+
/**
|
1410
|
+
* @param fd A file descriptor.
|
1411
|
+
* @param buffer The buffer that the data will be written to.
|
1412
|
+
* @param offset The offset in the buffer at which to start writing.
|
1413
|
+
* @param length The number of bytes to read.
|
1414
|
+
* @param position The offset from the beginning of the file from which data should be read. If `null`, data will be read from the current position.
|
1415
|
+
*/
|
1416
|
+
function __promisify__<TBuffer extends NodeJS.ArrayBufferView>(
|
1417
|
+
fd: number,
|
1418
|
+
buffer: TBuffer,
|
1419
|
+
offset: number,
|
1420
|
+
length: number,
|
1421
|
+
position: number | null
|
1422
|
+
): Promise<{ bytesRead: number, buffer: TBuffer }>;
|
1423
|
+
}
|
1424
|
+
|
1425
|
+
export interface ReadSyncOptions {
|
1426
|
+
/**
|
1427
|
+
* @default 0
|
1428
|
+
*/
|
1429
|
+
offset?: number;
|
1430
|
+
/**
|
1431
|
+
* @default `length of buffer`
|
1432
|
+
*/
|
1433
|
+
length?: number;
|
1434
|
+
/**
|
1435
|
+
* @default null
|
1436
|
+
*/
|
1437
|
+
position?: number | null;
|
1438
|
+
}
|
1439
|
+
|
1440
|
+
/**
|
1441
|
+
* Synchronously reads data from the file referenced by the supplied file descriptor, returning the number of bytes read.
|
1442
|
+
* @param fd A file descriptor.
|
1443
|
+
* @param buffer The buffer that the data will be written to.
|
1444
|
+
* @param offset The offset in the buffer at which to start writing.
|
1445
|
+
* @param length The number of bytes to read.
|
1446
|
+
* @param position The offset from the beginning of the file from which data should be read. If `null`, data will be read from the current position.
|
1447
|
+
*/
|
1448
|
+
export function readSync(fd: number, buffer: NodeJS.ArrayBufferView, offset: number, length: number, position: number | null): number;
|
1449
|
+
|
1450
|
+
/**
|
1451
|
+
* Similar to the above `fs.readSync` function, this version takes an optional `options` object.
|
1452
|
+
* If no `options` object is specified, it will default with the above values.
|
1453
|
+
*/
|
1454
|
+
export function readSync(fd: number, buffer: NodeJS.ArrayBufferView, opts?: ReadSyncOptions): number;
|
1455
|
+
|
1456
|
+
/**
|
1457
|
+
* Asynchronously reads the entire contents of a file.
|
1458
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
1459
|
+
* If a file descriptor is provided, the underlying file will _not_ be closed automatically.
|
1460
|
+
* @param options An object that may contain an optional flag.
|
1461
|
+
* If a flag is not provided, it defaults to `'r'`.
|
1462
|
+
*/
|
1463
|
+
export function readFile(path: PathLike | number, options: { encoding?: null; flag?: string; } | undefined | null, callback: (err: NodeJS.ErrnoException | null, data: Buffer) => void): void;
|
1464
|
+
|
1465
|
+
/**
|
1466
|
+
* Asynchronously reads the entire contents of a file.
|
1467
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
1468
|
+
* URL support is _experimental_.
|
1469
|
+
* If a file descriptor is provided, the underlying file will _not_ be closed automatically.
|
1470
|
+
* @param options Either the encoding for the result, or an object that contains the encoding and an optional flag.
|
1471
|
+
* If a flag is not provided, it defaults to `'r'`.
|
1472
|
+
*/
|
1473
|
+
export function readFile(path: PathLike | number, options: { encoding: BufferEncoding; flag?: string; } | string, callback: (err: NodeJS.ErrnoException | null, data: string) => void): void;
|
1474
|
+
|
1475
|
+
/**
|
1476
|
+
* Asynchronously reads the entire contents of a file.
|
1477
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
1478
|
+
* URL support is _experimental_.
|
1479
|
+
* If a file descriptor is provided, the underlying file will _not_ be closed automatically.
|
1480
|
+
* @param options Either the encoding for the result, or an object that contains the encoding and an optional flag.
|
1481
|
+
* If a flag is not provided, it defaults to `'r'`.
|
1482
|
+
*/
|
1483
|
+
export function readFile(
|
1484
|
+
path: PathLike | number,
|
1485
|
+
options: BaseEncodingOptions & { flag?: string; } | string | undefined | null,
|
1486
|
+
callback: (err: NodeJS.ErrnoException | null, data: string | Buffer) => void,
|
1487
|
+
): void;
|
1488
|
+
|
1489
|
+
/**
|
1490
|
+
* Asynchronously reads the entire contents of a file.
|
1491
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
1492
|
+
* If a file descriptor is provided, the underlying file will _not_ be closed automatically.
|
1493
|
+
*/
|
1494
|
+
export function readFile(path: PathLike | number, callback: (err: NodeJS.ErrnoException | null, data: Buffer) => void): void;
|
1495
|
+
|
1496
|
+
// NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime.
|
1497
|
+
export namespace readFile {
|
1498
|
+
/**
|
1499
|
+
* Asynchronously reads the entire contents of a file.
|
1500
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
1501
|
+
* If a file descriptor is provided, the underlying file will _not_ be closed automatically.
|
1502
|
+
* @param options An object that may contain an optional flag.
|
1503
|
+
* If a flag is not provided, it defaults to `'r'`.
|
1504
|
+
*/
|
1505
|
+
function __promisify__(path: PathLike | number, options?: { encoding?: null; flag?: string; } | null): Promise<Buffer>;
|
1506
|
+
|
1507
|
+
/**
|
1508
|
+
* Asynchronously reads the entire contents of a file.
|
1509
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
1510
|
+
* URL support is _experimental_.
|
1511
|
+
* If a file descriptor is provided, the underlying file will _not_ be closed automatically.
|
1512
|
+
* @param options Either the encoding for the result, or an object that contains the encoding and an optional flag.
|
1513
|
+
* If a flag is not provided, it defaults to `'r'`.
|
1514
|
+
*/
|
1515
|
+
function __promisify__(path: PathLike | number, options: { encoding: BufferEncoding; flag?: string; } | string): Promise<string>;
|
1516
|
+
|
1517
|
+
/**
|
1518
|
+
* Asynchronously reads the entire contents of a file.
|
1519
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
1520
|
+
* URL support is _experimental_.
|
1521
|
+
* If a file descriptor is provided, the underlying file will _not_ be closed automatically.
|
1522
|
+
* @param options Either the encoding for the result, or an object that contains the encoding and an optional flag.
|
1523
|
+
* If a flag is not provided, it defaults to `'r'`.
|
1524
|
+
*/
|
1525
|
+
function __promisify__(path: PathLike | number, options?: BaseEncodingOptions & { flag?: string; } | string | null): Promise<string | Buffer>;
|
1526
|
+
}
|
1527
|
+
|
1528
|
+
/**
|
1529
|
+
* Synchronously reads the entire contents of a file.
|
1530
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
1531
|
+
* URL support is _experimental_.
|
1532
|
+
* If a file descriptor is provided, the underlying file will _not_ be closed automatically.
|
1533
|
+
* @param options An object that may contain an optional flag. If a flag is not provided, it defaults to `'r'`.
|
1534
|
+
*/
|
1535
|
+
export function readFileSync(path: PathLike | number, options?: { encoding?: null; flag?: string; } | null): Buffer;
|
1536
|
+
|
1537
|
+
/**
|
1538
|
+
* Synchronously reads the entire contents of a file.
|
1539
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
1540
|
+
* URL support is _experimental_.
|
1541
|
+
* If a file descriptor is provided, the underlying file will _not_ be closed automatically.
|
1542
|
+
* @param options Either the encoding for the result, or an object that contains the encoding and an optional flag.
|
1543
|
+
* If a flag is not provided, it defaults to `'r'`.
|
1544
|
+
*/
|
1545
|
+
export function readFileSync(path: PathLike | number, options: { encoding: BufferEncoding; flag?: string; } | BufferEncoding): string;
|
1546
|
+
|
1547
|
+
/**
|
1548
|
+
* Synchronously reads the entire contents of a file.
|
1549
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
1550
|
+
* URL support is _experimental_.
|
1551
|
+
* If a file descriptor is provided, the underlying file will _not_ be closed automatically.
|
1552
|
+
* @param options Either the encoding for the result, or an object that contains the encoding and an optional flag.
|
1553
|
+
* If a flag is not provided, it defaults to `'r'`.
|
1554
|
+
*/
|
1555
|
+
export function readFileSync(path: PathLike | number, options?: BaseEncodingOptions & { flag?: string; } | BufferEncoding | null): string | Buffer;
|
1556
|
+
|
1557
|
+
export type WriteFileOptions = BaseEncodingOptions & { mode?: Mode; flag?: string; } | string | null;
|
1558
|
+
|
1559
|
+
/**
|
1560
|
+
* Asynchronously writes data to a file, replacing the file if it already exists.
|
1561
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
1562
|
+
* URL support is _experimental_.
|
1563
|
+
* If a file descriptor is provided, the underlying file will _not_ be closed automatically.
|
1564
|
+
* @param data The data to write. If something other than a Buffer or Uint8Array is provided, the value is coerced to a string.
|
1565
|
+
* @param options Either the encoding for the file, or an object optionally specifying the encoding, file mode, and flag.
|
1566
|
+
* If `encoding` is not supplied, the default of `'utf8'` is used.
|
1567
|
+
* If `mode` is not supplied, the default of `0o666` is used.
|
1568
|
+
* If `mode` is a string, it is parsed as an octal integer.
|
1569
|
+
* If `flag` is not supplied, the default of `'w'` is used.
|
1570
|
+
*/
|
1571
|
+
export function writeFile(path: PathLike | number, data: string | NodeJS.ArrayBufferView, options: WriteFileOptions, callback: NoParamCallback): void;
|
1572
|
+
|
1573
|
+
/**
|
1574
|
+
* Asynchronously writes data to a file, replacing the file if it already exists.
|
1575
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
1576
|
+
* URL support is _experimental_.
|
1577
|
+
* If a file descriptor is provided, the underlying file will _not_ be closed automatically.
|
1578
|
+
* @param data The data to write. If something other than a Buffer or Uint8Array is provided, the value is coerced to a string.
|
1579
|
+
*/
|
1580
|
+
export function writeFile(path: PathLike | number, data: string | NodeJS.ArrayBufferView, callback: NoParamCallback): void;
|
1581
|
+
|
1582
|
+
// NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime.
|
1583
|
+
export namespace writeFile {
|
1584
|
+
/**
|
1585
|
+
* Asynchronously writes data to a file, replacing the file if it already exists.
|
1586
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
1587
|
+
* URL support is _experimental_.
|
1588
|
+
* If a file descriptor is provided, the underlying file will _not_ be closed automatically.
|
1589
|
+
* @param data The data to write. If something other than a Buffer or Uint8Array is provided, the value is coerced to a string.
|
1590
|
+
* @param options Either the encoding for the file, or an object optionally specifying the encoding, file mode, and flag.
|
1591
|
+
* If `encoding` is not supplied, the default of `'utf8'` is used.
|
1592
|
+
* If `mode` is not supplied, the default of `0o666` is used.
|
1593
|
+
* If `mode` is a string, it is parsed as an octal integer.
|
1594
|
+
* If `flag` is not supplied, the default of `'w'` is used.
|
1595
|
+
*/
|
1596
|
+
function __promisify__(path: PathLike | number, data: string | NodeJS.ArrayBufferView, options?: WriteFileOptions): Promise<void>;
|
1597
|
+
}
|
1598
|
+
|
1599
|
+
/**
|
1600
|
+
* Synchronously writes data to a file, replacing the file if it already exists.
|
1601
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
1602
|
+
* URL support is _experimental_.
|
1603
|
+
* If a file descriptor is provided, the underlying file will _not_ be closed automatically.
|
1604
|
+
* @param data The data to write. If something other than a Buffer or Uint8Array is provided, the value is coerced to a string.
|
1605
|
+
* @param options Either the encoding for the file, or an object optionally specifying the encoding, file mode, and flag.
|
1606
|
+
* If `encoding` is not supplied, the default of `'utf8'` is used.
|
1607
|
+
* If `mode` is not supplied, the default of `0o666` is used.
|
1608
|
+
* If `mode` is a string, it is parsed as an octal integer.
|
1609
|
+
* If `flag` is not supplied, the default of `'w'` is used.
|
1610
|
+
*/
|
1611
|
+
export function writeFileSync(path: PathLike | number, data: string | NodeJS.ArrayBufferView, options?: WriteFileOptions): void;
|
1612
|
+
|
1613
|
+
/**
|
1614
|
+
* Asynchronously append data to a file, creating the file if it does not exist.
|
1615
|
+
* @param file A path to a file. If a URL is provided, it must use the `file:` protocol.
|
1616
|
+
* URL support is _experimental_.
|
1617
|
+
* If a file descriptor is provided, the underlying file will _not_ be closed automatically.
|
1618
|
+
* @param data The data to write. If something other than a Buffer or Uint8Array is provided, the value is coerced to a string.
|
1619
|
+
* @param options Either the encoding for the file, or an object optionally specifying the encoding, file mode, and flag.
|
1620
|
+
* If `encoding` is not supplied, the default of `'utf8'` is used.
|
1621
|
+
* If `mode` is not supplied, the default of `0o666` is used.
|
1622
|
+
* If `mode` is a string, it is parsed as an octal integer.
|
1623
|
+
* If `flag` is not supplied, the default of `'a'` is used.
|
1624
|
+
*/
|
1625
|
+
export function appendFile(file: PathLike | number, data: string | Uint8Array, options: WriteFileOptions, callback: NoParamCallback): void;
|
1626
|
+
|
1627
|
+
/**
|
1628
|
+
* Asynchronously append data to a file, creating the file if it does not exist.
|
1629
|
+
* @param file A path to a file. If a URL is provided, it must use the `file:` protocol.
|
1630
|
+
* URL support is _experimental_.
|
1631
|
+
* If a file descriptor is provided, the underlying file will _not_ be closed automatically.
|
1632
|
+
* @param data The data to write. If something other than a Buffer or Uint8Array is provided, the value is coerced to a string.
|
1633
|
+
*/
|
1634
|
+
export function appendFile(file: PathLike | number, data: string | Uint8Array, callback: NoParamCallback): void;
|
1635
|
+
|
1636
|
+
// NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime.
|
1637
|
+
export namespace appendFile {
|
1638
|
+
/**
|
1639
|
+
* Asynchronously append data to a file, creating the file if it does not exist.
|
1640
|
+
* @param file A path to a file. If a URL is provided, it must use the `file:` protocol.
|
1641
|
+
* URL support is _experimental_.
|
1642
|
+
* If a file descriptor is provided, the underlying file will _not_ be closed automatically.
|
1643
|
+
* @param data The data to write. If something other than a Buffer or Uint8Array is provided, the value is coerced to a string.
|
1644
|
+
* @param options Either the encoding for the file, or an object optionally specifying the encoding, file mode, and flag.
|
1645
|
+
* If `encoding` is not supplied, the default of `'utf8'` is used.
|
1646
|
+
* If `mode` is not supplied, the default of `0o666` is used.
|
1647
|
+
* If `mode` is a string, it is parsed as an octal integer.
|
1648
|
+
* If `flag` is not supplied, the default of `'a'` is used.
|
1649
|
+
*/
|
1650
|
+
function __promisify__(file: PathLike | number, data: string | Uint8Array, options?: WriteFileOptions): Promise<void>;
|
1651
|
+
}
|
1652
|
+
|
1653
|
+
/**
|
1654
|
+
* Synchronously append data to a file, creating the file if it does not exist.
|
1655
|
+
* @param file A path to a file. If a URL is provided, it must use the `file:` protocol.
|
1656
|
+
* URL support is _experimental_.
|
1657
|
+
* If a file descriptor is provided, the underlying file will _not_ be closed automatically.
|
1658
|
+
* @param data The data to write. If something other than a Buffer or Uint8Array is provided, the value is coerced to a string.
|
1659
|
+
* @param options Either the encoding for the file, or an object optionally specifying the encoding, file mode, and flag.
|
1660
|
+
* If `encoding` is not supplied, the default of `'utf8'` is used.
|
1661
|
+
* If `mode` is not supplied, the default of `0o666` is used.
|
1662
|
+
* If `mode` is a string, it is parsed as an octal integer.
|
1663
|
+
* If `flag` is not supplied, the default of `'a'` is used.
|
1664
|
+
*/
|
1665
|
+
export function appendFileSync(file: PathLike | number, data: string | Uint8Array, options?: WriteFileOptions): void;
|
1666
|
+
|
1667
|
+
/**
|
1668
|
+
* Watch for changes on `filename`. The callback `listener` will be called each time the file is accessed.
|
1669
|
+
*/
|
1670
|
+
export function watchFile(filename: PathLike, options: { persistent?: boolean; interval?: number; } | undefined, listener: (curr: Stats, prev: Stats) => void): void;
|
1671
|
+
|
1672
|
+
/**
|
1673
|
+
* Watch for changes on `filename`. The callback `listener` will be called each time the file is accessed.
|
1674
|
+
* @param filename A path to a file or directory. If a URL is provided, it must use the `file:` protocol.
|
1675
|
+
* URL support is _experimental_.
|
1676
|
+
*/
|
1677
|
+
export function watchFile(filename: PathLike, listener: (curr: Stats, prev: Stats) => void): void;
|
1678
|
+
|
1679
|
+
/**
|
1680
|
+
* Stop watching for changes on `filename`.
|
1681
|
+
* @param filename A path to a file or directory. If a URL is provided, it must use the `file:` protocol.
|
1682
|
+
* URL support is _experimental_.
|
1683
|
+
*/
|
1684
|
+
export function unwatchFile(filename: PathLike, listener?: (curr: Stats, prev: Stats) => void): void;
|
1685
|
+
|
1686
|
+
/**
|
1687
|
+
* Watch for changes on `filename`, where `filename` is either a file or a directory, returning an `FSWatcher`.
|
1688
|
+
* @param filename A path to a file or directory. If a URL is provided, it must use the `file:` protocol.
|
1689
|
+
* URL support is _experimental_.
|
1690
|
+
* @param options Either the encoding for the filename provided to the listener, or an object optionally specifying encoding, persistent, and recursive options.
|
1691
|
+
* If `encoding` is not supplied, the default of `'utf8'` is used.
|
1692
|
+
* If `persistent` is not supplied, the default of `true` is used.
|
1693
|
+
* If `recursive` is not supplied, the default of `false` is used.
|
1694
|
+
*/
|
1695
|
+
export function watch(
|
1696
|
+
filename: PathLike,
|
1697
|
+
options: { encoding?: BufferEncoding | null, persistent?: boolean, recursive?: boolean } | BufferEncoding | undefined | null,
|
1698
|
+
listener?: (event: string, filename: string) => void,
|
1699
|
+
): FSWatcher;
|
1700
|
+
|
1701
|
+
/**
|
1702
|
+
* Watch for changes on `filename`, where `filename` is either a file or a directory, returning an `FSWatcher`.
|
1703
|
+
* @param filename A path to a file or directory. If a URL is provided, it must use the `file:` protocol.
|
1704
|
+
* URL support is _experimental_.
|
1705
|
+
* @param options Either the encoding for the filename provided to the listener, or an object optionally specifying encoding, persistent, and recursive options.
|
1706
|
+
* If `encoding` is not supplied, the default of `'utf8'` is used.
|
1707
|
+
* If `persistent` is not supplied, the default of `true` is used.
|
1708
|
+
* If `recursive` is not supplied, the default of `false` is used.
|
1709
|
+
*/
|
1710
|
+
export function watch(filename: PathLike, options: { encoding: "buffer", persistent?: boolean, recursive?: boolean } | "buffer", listener?: (event: string, filename: Buffer) => void): FSWatcher;
|
1711
|
+
|
1712
|
+
/**
|
1713
|
+
* Watch for changes on `filename`, where `filename` is either a file or a directory, returning an `FSWatcher`.
|
1714
|
+
* @param filename A path to a file or directory. If a URL is provided, it must use the `file:` protocol.
|
1715
|
+
* URL support is _experimental_.
|
1716
|
+
* @param options Either the encoding for the filename provided to the listener, or an object optionally specifying encoding, persistent, and recursive options.
|
1717
|
+
* If `encoding` is not supplied, the default of `'utf8'` is used.
|
1718
|
+
* If `persistent` is not supplied, the default of `true` is used.
|
1719
|
+
* If `recursive` is not supplied, the default of `false` is used.
|
1720
|
+
*/
|
1721
|
+
export function watch(
|
1722
|
+
filename: PathLike,
|
1723
|
+
options: { encoding?: BufferEncoding | null, persistent?: boolean, recursive?: boolean } | string | null,
|
1724
|
+
listener?: (event: string, filename: string | Buffer) => void,
|
1725
|
+
): FSWatcher;
|
1726
|
+
|
1727
|
+
/**
|
1728
|
+
* Watch for changes on `filename`, where `filename` is either a file or a directory, returning an `FSWatcher`.
|
1729
|
+
* @param filename A path to a file or directory. If a URL is provided, it must use the `file:` protocol.
|
1730
|
+
* URL support is _experimental_.
|
1731
|
+
*/
|
1732
|
+
export function watch(filename: PathLike, listener?: (event: string, filename: string) => any): FSWatcher;
|
1733
|
+
|
1734
|
+
/**
|
1735
|
+
* Asynchronously tests whether or not the given path exists by checking with the file system.
|
1736
|
+
* @deprecated since v1.0.0 Use `fs.stat()` or `fs.access()` instead
|
1737
|
+
* @param path A path to a file or directory. If a URL is provided, it must use the `file:` protocol.
|
1738
|
+
* URL support is _experimental_.
|
1739
|
+
*/
|
1740
|
+
export function exists(path: PathLike, callback: (exists: boolean) => void): void;
|
1741
|
+
|
1742
|
+
// NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime.
|
1743
|
+
export namespace exists {
|
1744
|
+
/**
|
1745
|
+
* @param path A path to a file or directory. If a URL is provided, it must use the `file:` protocol.
|
1746
|
+
* URL support is _experimental_.
|
1747
|
+
*/
|
1748
|
+
function __promisify__(path: PathLike): Promise<boolean>;
|
1749
|
+
}
|
1750
|
+
|
1751
|
+
/**
|
1752
|
+
* Synchronously tests whether or not the given path exists by checking with the file system.
|
1753
|
+
* @param path A path to a file or directory. If a URL is provided, it must use the `file:` protocol.
|
1754
|
+
* URL support is _experimental_.
|
1755
|
+
*/
|
1756
|
+
export function existsSync(path: PathLike): boolean;
|
1757
|
+
|
1758
|
+
export namespace constants {
|
1759
|
+
// File Access Constants
|
1760
|
+
|
1761
|
+
/** Constant for fs.access(). File is visible to the calling process. */
|
1762
|
+
const F_OK: number;
|
1763
|
+
|
1764
|
+
/** Constant for fs.access(). File can be read by the calling process. */
|
1765
|
+
const R_OK: number;
|
1766
|
+
|
1767
|
+
/** Constant for fs.access(). File can be written by the calling process. */
|
1768
|
+
const W_OK: number;
|
1769
|
+
|
1770
|
+
/** Constant for fs.access(). File can be executed by the calling process. */
|
1771
|
+
const X_OK: number;
|
1772
|
+
|
1773
|
+
// File Copy Constants
|
1774
|
+
|
1775
|
+
/** Constant for fs.copyFile. Flag indicating the destination file should not be overwritten if it already exists. */
|
1776
|
+
const COPYFILE_EXCL: number;
|
1777
|
+
|
1778
|
+
/**
|
1779
|
+
* Constant for fs.copyFile. copy operation will attempt to create a copy-on-write reflink.
|
1780
|
+
* If the underlying platform does not support copy-on-write, then a fallback copy mechanism is used.
|
1781
|
+
*/
|
1782
|
+
const COPYFILE_FICLONE: number;
|
1783
|
+
|
1784
|
+
/**
|
1785
|
+
* Constant for fs.copyFile. Copy operation will attempt to create a copy-on-write reflink.
|
1786
|
+
* If the underlying platform does not support copy-on-write, then the operation will fail with an error.
|
1787
|
+
*/
|
1788
|
+
const COPYFILE_FICLONE_FORCE: number;
|
1789
|
+
|
1790
|
+
// File Open Constants
|
1791
|
+
|
1792
|
+
/** Constant for fs.open(). Flag indicating to open a file for read-only access. */
|
1793
|
+
const O_RDONLY: number;
|
1794
|
+
|
1795
|
+
/** Constant for fs.open(). Flag indicating to open a file for write-only access. */
|
1796
|
+
const O_WRONLY: number;
|
1797
|
+
|
1798
|
+
/** Constant for fs.open(). Flag indicating to open a file for read-write access. */
|
1799
|
+
const O_RDWR: number;
|
1800
|
+
|
1801
|
+
/** Constant for fs.open(). Flag indicating to create the file if it does not already exist. */
|
1802
|
+
const O_CREAT: number;
|
1803
|
+
|
1804
|
+
/** Constant for fs.open(). Flag indicating that opening a file should fail if the O_CREAT flag is set and the file already exists. */
|
1805
|
+
const O_EXCL: number;
|
1806
|
+
|
1807
|
+
/**
|
1808
|
+
* Constant for fs.open(). Flag indicating that if path identifies a terminal device,
|
1809
|
+
* opening the path shall not cause that terminal to become the controlling terminal for the process
|
1810
|
+
* (if the process does not already have one).
|
1811
|
+
*/
|
1812
|
+
const O_NOCTTY: number;
|
1813
|
+
|
1814
|
+
/** Constant for fs.open(). Flag indicating that if the file exists and is a regular file, and the file is opened successfully for write access, its length shall be truncated to zero. */
|
1815
|
+
const O_TRUNC: number;
|
1816
|
+
|
1817
|
+
/** Constant for fs.open(). Flag indicating that data will be appended to the end of the file. */
|
1818
|
+
const O_APPEND: number;
|
1819
|
+
|
1820
|
+
/** Constant for fs.open(). Flag indicating that the open should fail if the path is not a directory. */
|
1821
|
+
const O_DIRECTORY: number;
|
1822
|
+
|
1823
|
+
/**
|
1824
|
+
* constant for fs.open().
|
1825
|
+
* Flag indicating reading accesses to the file system will no longer result in
|
1826
|
+
* an update to the atime information associated with the file.
|
1827
|
+
* This flag is available on Linux operating systems only.
|
1828
|
+
*/
|
1829
|
+
const O_NOATIME: number;
|
1830
|
+
|
1831
|
+
/** Constant for fs.open(). Flag indicating that the open should fail if the path is a symbolic link. */
|
1832
|
+
const O_NOFOLLOW: number;
|
1833
|
+
|
1834
|
+
/** Constant for fs.open(). Flag indicating that the file is opened for synchronous I/O. */
|
1835
|
+
const O_SYNC: number;
|
1836
|
+
|
1837
|
+
/** Constant for fs.open(). Flag indicating that the file is opened for synchronous I/O with write operations waiting for data integrity. */
|
1838
|
+
const O_DSYNC: number;
|
1839
|
+
|
1840
|
+
/** Constant for fs.open(). Flag indicating to open the symbolic link itself rather than the resource it is pointing to. */
|
1841
|
+
const O_SYMLINK: number;
|
1842
|
+
|
1843
|
+
/** Constant for fs.open(). When set, an attempt will be made to minimize caching effects of file I/O. */
|
1844
|
+
const O_DIRECT: number;
|
1845
|
+
|
1846
|
+
/** Constant for fs.open(). Flag indicating to open the file in nonblocking mode when possible. */
|
1847
|
+
const O_NONBLOCK: number;
|
1848
|
+
|
1849
|
+
// File Type Constants
|
1850
|
+
|
1851
|
+
/** Constant for fs.Stats mode property for determining a file's type. Bit mask used to extract the file type code. */
|
1852
|
+
const S_IFMT: number;
|
1853
|
+
|
1854
|
+
/** Constant for fs.Stats mode property for determining a file's type. File type constant for a regular file. */
|
1855
|
+
const S_IFREG: number;
|
1856
|
+
|
1857
|
+
/** Constant for fs.Stats mode property for determining a file's type. File type constant for a directory. */
|
1858
|
+
const S_IFDIR: number;
|
1859
|
+
|
1860
|
+
/** Constant for fs.Stats mode property for determining a file's type. File type constant for a character-oriented device file. */
|
1861
|
+
const S_IFCHR: number;
|
1862
|
+
|
1863
|
+
/** Constant for fs.Stats mode property for determining a file's type. File type constant for a block-oriented device file. */
|
1864
|
+
const S_IFBLK: number;
|
1865
|
+
|
1866
|
+
/** Constant for fs.Stats mode property for determining a file's type. File type constant for a FIFO/pipe. */
|
1867
|
+
const S_IFIFO: number;
|
1868
|
+
|
1869
|
+
/** Constant for fs.Stats mode property for determining a file's type. File type constant for a symbolic link. */
|
1870
|
+
const S_IFLNK: number;
|
1871
|
+
|
1872
|
+
/** Constant for fs.Stats mode property for determining a file's type. File type constant for a socket. */
|
1873
|
+
const S_IFSOCK: number;
|
1874
|
+
|
1875
|
+
// File Mode Constants
|
1876
|
+
|
1877
|
+
/** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating readable, writable and executable by owner. */
|
1878
|
+
const S_IRWXU: number;
|
1879
|
+
|
1880
|
+
/** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating readable by owner. */
|
1881
|
+
const S_IRUSR: number;
|
1882
|
+
|
1883
|
+
/** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating writable by owner. */
|
1884
|
+
const S_IWUSR: number;
|
1885
|
+
|
1886
|
+
/** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating executable by owner. */
|
1887
|
+
const S_IXUSR: number;
|
1888
|
+
|
1889
|
+
/** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating readable, writable and executable by group. */
|
1890
|
+
const S_IRWXG: number;
|
1891
|
+
|
1892
|
+
/** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating readable by group. */
|
1893
|
+
const S_IRGRP: number;
|
1894
|
+
|
1895
|
+
/** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating writable by group. */
|
1896
|
+
const S_IWGRP: number;
|
1897
|
+
|
1898
|
+
/** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating executable by group. */
|
1899
|
+
const S_IXGRP: number;
|
1900
|
+
|
1901
|
+
/** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating readable, writable and executable by others. */
|
1902
|
+
const S_IRWXO: number;
|
1903
|
+
|
1904
|
+
/** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating readable by others. */
|
1905
|
+
const S_IROTH: number;
|
1906
|
+
|
1907
|
+
/** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating writable by others. */
|
1908
|
+
const S_IWOTH: number;
|
1909
|
+
|
1910
|
+
/** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating executable by others. */
|
1911
|
+
const S_IXOTH: number;
|
1912
|
+
|
1913
|
+
/**
|
1914
|
+
* When set, a memory file mapping is used to access the file. This flag
|
1915
|
+
* is available on Windows operating systems only. On other operating systems,
|
1916
|
+
* this flag is ignored.
|
1917
|
+
*/
|
1918
|
+
const UV_FS_O_FILEMAP: number;
|
1919
|
+
}
|
1920
|
+
|
1921
|
+
/**
|
1922
|
+
* Asynchronously tests a user's permissions for the file specified by path.
|
1923
|
+
* @param path A path to a file or directory. If a URL is provided, it must use the `file:` protocol.
|
1924
|
+
* URL support is _experimental_.
|
1925
|
+
*/
|
1926
|
+
export function access(path: PathLike, mode: number | undefined, callback: NoParamCallback): void;
|
1927
|
+
|
1928
|
+
/**
|
1929
|
+
* Asynchronously tests a user's permissions for the file specified by path.
|
1930
|
+
* @param path A path to a file or directory. If a URL is provided, it must use the `file:` protocol.
|
1931
|
+
* URL support is _experimental_.
|
1932
|
+
*/
|
1933
|
+
export function access(path: PathLike, callback: NoParamCallback): void;
|
1934
|
+
|
1935
|
+
// NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime.
|
1936
|
+
export namespace access {
|
1937
|
+
/**
|
1938
|
+
* Asynchronously tests a user's permissions for the file specified by path.
|
1939
|
+
* @param path A path to a file or directory. If a URL is provided, it must use the `file:` protocol.
|
1940
|
+
* URL support is _experimental_.
|
1941
|
+
*/
|
1942
|
+
function __promisify__(path: PathLike, mode?: number): Promise<void>;
|
1943
|
+
}
|
1944
|
+
|
1945
|
+
/**
|
1946
|
+
* Synchronously tests a user's permissions for the file specified by path.
|
1947
|
+
* @param path A path to a file or directory. If a URL is provided, it must use the `file:` protocol.
|
1948
|
+
* URL support is _experimental_.
|
1949
|
+
*/
|
1950
|
+
export function accessSync(path: PathLike, mode?: number): void;
|
1951
|
+
|
1952
|
+
/**
|
1953
|
+
* Returns a new `ReadStream` object.
|
1954
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
1955
|
+
* URL support is _experimental_.
|
1956
|
+
*/
|
1957
|
+
export function createReadStream(path: PathLike, options?: string | {
|
1958
|
+
flags?: string;
|
1959
|
+
encoding?: BufferEncoding;
|
1960
|
+
fd?: number;
|
1961
|
+
mode?: number;
|
1962
|
+
autoClose?: boolean;
|
1963
|
+
/**
|
1964
|
+
* @default false
|
1965
|
+
*/
|
1966
|
+
emitClose?: boolean;
|
1967
|
+
start?: number;
|
1968
|
+
end?: number;
|
1969
|
+
highWaterMark?: number;
|
1970
|
+
}): ReadStream;
|
1971
|
+
|
1972
|
+
/**
|
1973
|
+
* Returns a new `WriteStream` object.
|
1974
|
+
* @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
|
1975
|
+
* URL support is _experimental_.
|
1976
|
+
*/
|
1977
|
+
export function createWriteStream(path: PathLike, options?: string | {
|
1978
|
+
flags?: string;
|
1979
|
+
encoding?: BufferEncoding;
|
1980
|
+
fd?: number;
|
1981
|
+
mode?: number;
|
1982
|
+
autoClose?: boolean;
|
1983
|
+
emitClose?: boolean;
|
1984
|
+
start?: number;
|
1985
|
+
highWaterMark?: number;
|
1986
|
+
}): WriteStream;
|
1987
|
+
|
1988
|
+
/**
|
1989
|
+
* Asynchronous fdatasync(2) - synchronize a file's in-core state with storage device.
|
1990
|
+
* @param fd A file descriptor.
|
1991
|
+
*/
|
1992
|
+
export function fdatasync(fd: number, callback: NoParamCallback): void;
|
1993
|
+
|
1994
|
+
// NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime.
|
1995
|
+
export namespace fdatasync {
|
1996
|
+
/**
|
1997
|
+
* Asynchronous fdatasync(2) - synchronize a file's in-core state with storage device.
|
1998
|
+
* @param fd A file descriptor.
|
1999
|
+
*/
|
2000
|
+
function __promisify__(fd: number): Promise<void>;
|
2001
|
+
}
|
2002
|
+
|
2003
|
+
/**
|
2004
|
+
* Synchronous fdatasync(2) - synchronize a file's in-core state with storage device.
|
2005
|
+
* @param fd A file descriptor.
|
2006
|
+
*/
|
2007
|
+
export function fdatasyncSync(fd: number): void;
|
2008
|
+
|
2009
|
+
/**
|
2010
|
+
* Asynchronously copies src to dest. By default, dest is overwritten if it already exists.
|
2011
|
+
* No arguments other than a possible exception are given to the callback function.
|
2012
|
+
* Node.js makes no guarantees about the atomicity of the copy operation.
|
2013
|
+
* If an error occurs after the destination file has been opened for writing, Node.js will attempt
|
2014
|
+
* to remove the destination.
|
2015
|
+
* @param src A path to the source file.
|
2016
|
+
* @param dest A path to the destination file.
|
2017
|
+
*/
|
2018
|
+
export function copyFile(src: PathLike, dest: PathLike, callback: NoParamCallback): void;
|
2019
|
+
/**
|
2020
|
+
* Asynchronously copies src to dest. By default, dest is overwritten if it already exists.
|
2021
|
+
* No arguments other than a possible exception are given to the callback function.
|
2022
|
+
* Node.js makes no guarantees about the atomicity of the copy operation.
|
2023
|
+
* If an error occurs after the destination file has been opened for writing, Node.js will attempt
|
2024
|
+
* to remove the destination.
|
2025
|
+
* @param src A path to the source file.
|
2026
|
+
* @param dest A path to the destination file.
|
2027
|
+
* @param flags An integer that specifies the behavior of the copy operation. The only supported flag is fs.constants.COPYFILE_EXCL, which causes the copy operation to fail if dest already exists.
|
2028
|
+
*/
|
2029
|
+
export function copyFile(src: PathLike, dest: PathLike, flags: number, callback: NoParamCallback): void;
|
2030
|
+
|
2031
|
+
// NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime.
|
2032
|
+
export namespace copyFile {
|
2033
|
+
/**
|
2034
|
+
* Asynchronously copies src to dest. By default, dest is overwritten if it already exists.
|
2035
|
+
* No arguments other than a possible exception are given to the callback function.
|
2036
|
+
* Node.js makes no guarantees about the atomicity of the copy operation.
|
2037
|
+
* If an error occurs after the destination file has been opened for writing, Node.js will attempt
|
2038
|
+
* to remove the destination.
|
2039
|
+
* @param src A path to the source file.
|
2040
|
+
* @param dest A path to the destination file.
|
2041
|
+
* @param flags An optional integer that specifies the behavior of the copy operation.
|
2042
|
+
* The only supported flag is fs.constants.COPYFILE_EXCL,
|
2043
|
+
* which causes the copy operation to fail if dest already exists.
|
2044
|
+
*/
|
2045
|
+
function __promisify__(src: PathLike, dst: PathLike, flags?: number): Promise<void>;
|
2046
|
+
}
|
2047
|
+
|
2048
|
+
/**
|
2049
|
+
* Synchronously copies src to dest. By default, dest is overwritten if it already exists.
|
2050
|
+
* Node.js makes no guarantees about the atomicity of the copy operation.
|
2051
|
+
* If an error occurs after the destination file has been opened for writing, Node.js will attempt
|
2052
|
+
* to remove the destination.
|
2053
|
+
* @param src A path to the source file.
|
2054
|
+
* @param dest A path to the destination file.
|
2055
|
+
* @param flags An optional integer that specifies the behavior of the copy operation.
|
2056
|
+
* The only supported flag is fs.constants.COPYFILE_EXCL, which causes the copy operation to fail if dest already exists.
|
2057
|
+
*/
|
2058
|
+
export function copyFileSync(src: PathLike, dest: PathLike, flags?: number): void;
|
2059
|
+
|
2060
|
+
/**
|
2061
|
+
* Write an array of ArrayBufferViews to the file specified by fd using writev().
|
2062
|
+
* position is the offset from the beginning of the file where this data should be written.
|
2063
|
+
* It is unsafe to use fs.writev() multiple times on the same file without waiting for the callback. For this scenario, use fs.createWriteStream().
|
2064
|
+
* On Linux, positional writes don't work when the file is opened in append mode.
|
2065
|
+
* The kernel ignores the position argument and always appends the data to the end of the file.
|
2066
|
+
*/
|
2067
|
+
export function writev(
|
2068
|
+
fd: number,
|
2069
|
+
buffers: NodeJS.ArrayBufferView[],
|
2070
|
+
cb: (err: NodeJS.ErrnoException | null, bytesWritten: number, buffers: NodeJS.ArrayBufferView[]) => void
|
2071
|
+
): void;
|
2072
|
+
export function writev(
|
2073
|
+
fd: number,
|
2074
|
+
buffers: NodeJS.ArrayBufferView[],
|
2075
|
+
position: number,
|
2076
|
+
cb: (err: NodeJS.ErrnoException | null, bytesWritten: number, buffers: NodeJS.ArrayBufferView[]) => void
|
2077
|
+
): void;
|
2078
|
+
|
2079
|
+
export interface WriteVResult {
|
2080
|
+
bytesWritten: number;
|
2081
|
+
buffers: NodeJS.ArrayBufferView[];
|
2082
|
+
}
|
2083
|
+
|
2084
|
+
export namespace writev {
|
2085
|
+
function __promisify__(fd: number, buffers: NodeJS.ArrayBufferView[], position?: number): Promise<WriteVResult>;
|
2086
|
+
}
|
2087
|
+
|
2088
|
+
/**
|
2089
|
+
* See `writev`.
|
2090
|
+
*/
|
2091
|
+
export function writevSync(fd: number, buffers: NodeJS.ArrayBufferView[], position?: number): number;
|
2092
|
+
|
2093
|
+
export function readv(
|
2094
|
+
fd: number,
|
2095
|
+
buffers: NodeJS.ArrayBufferView[],
|
2096
|
+
cb: (err: NodeJS.ErrnoException | null, bytesRead: number, buffers: NodeJS.ArrayBufferView[]) => void
|
2097
|
+
): void;
|
2098
|
+
export function readv(
|
2099
|
+
fd: number,
|
2100
|
+
buffers: NodeJS.ArrayBufferView[],
|
2101
|
+
position: number,
|
2102
|
+
cb: (err: NodeJS.ErrnoException | null, bytesRead: number, buffers: NodeJS.ArrayBufferView[]) => void
|
2103
|
+
): void;
|
2104
|
+
|
2105
|
+
export interface ReadVResult {
|
2106
|
+
bytesRead: number;
|
2107
|
+
buffers: NodeJS.ArrayBufferView[];
|
2108
|
+
}
|
2109
|
+
|
2110
|
+
export namespace readv {
|
2111
|
+
function __promisify__(fd: number, buffers: NodeJS.ArrayBufferView[], position?: number): Promise<ReadVResult>;
|
2112
|
+
}
|
2113
|
+
|
2114
|
+
/**
|
2115
|
+
* See `readv`.
|
2116
|
+
*/
|
2117
|
+
export function readvSync(fd: number, buffers: NodeJS.ArrayBufferView[], position?: number): number;
|
2118
|
+
|
2119
|
+
export interface OpenDirOptions {
|
2120
|
+
encoding?: BufferEncoding;
|
2121
|
+
/**
|
2122
|
+
* Number of directory entries that are buffered
|
2123
|
+
* internally when reading from the directory. Higher values lead to better
|
2124
|
+
* performance but higher memory usage.
|
2125
|
+
* @default 32
|
2126
|
+
*/
|
2127
|
+
bufferSize?: number;
|
2128
|
+
}
|
2129
|
+
|
2130
|
+
export function opendirSync(path: string, options?: OpenDirOptions): Dir;
|
2131
|
+
|
2132
|
+
export function opendir(path: string, cb: (err: NodeJS.ErrnoException | null, dir: Dir) => void): void;
|
2133
|
+
export function opendir(path: string, options: OpenDirOptions, cb: (err: NodeJS.ErrnoException | null, dir: Dir) => void): void;
|
2134
|
+
|
2135
|
+
export namespace opendir {
|
2136
|
+
function __promisify__(path: string, options?: OpenDirOptions): Promise<Dir>;
|
2137
|
+
}
|
2138
|
+
|
2139
|
+
export interface BigIntStats extends StatsBase<bigint> {
|
2140
|
+
}
|
2141
|
+
|
2142
|
+
export class BigIntStats {
|
2143
|
+
atimeNs: bigint;
|
2144
|
+
mtimeNs: bigint;
|
2145
|
+
ctimeNs: bigint;
|
2146
|
+
birthtimeNs: bigint;
|
2147
|
+
}
|
2148
|
+
|
2149
|
+
export interface BigIntOptions {
|
2150
|
+
bigint: true;
|
2151
|
+
}
|
2152
|
+
|
2153
|
+
export interface StatOptions {
|
2154
|
+
bigint: boolean;
|
2155
|
+
}
|
2156
|
+
}
|