/
opt
/
canhelp
/
node_modules
/
@types
/
node
/
/opt/canhelp/node_modules/@types/node
mkdir
upload
Name
Size
Mode
Actions
assert/
-
0755
rm
compatibility/
-
0755
rm
dns/
-
0755
rm
fs/
-
0755
rm
readline/
-
0755
rm
stream/
-
0755
rm
timers/
-
0755
rm
ts5.6/
-
0755
rm
web-globals/
-
0755
rm
assert.d.ts
45270
0644
edit
dl
rm
async_hooks.d.ts
25553
0644
edit
dl
rm
buffer.buffer.d.ts
22839
0644
edit
dl
rm
buffer.d.ts
88244
0644
edit
dl
rm
child_process.d.ts
66722
0644
edit
dl
rm
cluster.d.ts
27926
0644
edit
dl
rm
console.d.ts
21249
0644
edit
dl
rm
constants.d.ts
816
0644
edit
dl
rm
crypto.d.ts
192007
0644
edit
dl
rm
dgram.d.ts
28114
0644
edit
dl
rm
diagnostics_channel.d.ts
25224
0644
edit
dl
rm
dns.d.ts
37027
0644
edit
dl
rm
domain.d.ts
7812
0644
edit
dl
rm
events.d.ts
44252
0644
edit
dl
rm
fs.d.ts
190341
0644
edit
dl
rm
globals.d.ts
6114
0644
edit
dl
rm
globals.typedarray.d.ts
1825
0644
edit
dl
rm
http.d.ts
92874
0644
edit
dl
rm
http2.d.ts
129797
0644
edit
dl
rm
https.d.ts
25856
0644
edit
dl
rm
index.d.ts
4146
0644
edit
dl
rm
inspector.d.ts
11019
0644
edit
dl
rm
inspector.generated.d.ts
205045
0644
edit
dl
rm
LICENSE
1141
0644
edit
dl
rm
module.d.ts
40283
0644
edit
dl
rm
net.d.ts
49205
0644
edit
dl
rm
os.d.ts
19431
0644
edit
dl
rm
package.json
4275
0644
edit
dl
rm
path.d.ts
8333
0644
edit
dl
rm
perf_hooks.d.ts
38425
0644
edit
dl
rm
process.d.ts
107574
0644
edit
dl
rm
punycode.d.ts
5479
0644
edit
dl
rm
querystring.d.ts
7125
0644
edit
dl
rm
readline.d.ts
25878
0644
edit
dl
rm
README.md
1541
0644
edit
dl
rm
repl.d.ts
19459
0644
edit
dl
rm
sea.d.ts
6195
0644
edit
dl
rm
sqlite.d.ts
36079
0644
edit
dl
rm
stream.d.ts
86756
0644
edit
dl
rm
string_decoder.d.ts
2809
0644
edit
dl
rm
test.d.ts
101442
0644
edit
dl
rm
timers.d.ts
14636
0644
edit
dl
rm
tls.d.ts
62617
0644
edit
dl
rm
trace_events.d.ts
8926
0644
edit
dl
rm
tty.d.ts
10053
0644
edit
dl
rm
url.d.ts
43390
0644
edit
dl
rm
util.d.ts
99419
0644
edit
dl
rm
v8.d.ts
38762
0644
edit
dl
rm
vm.d.ts
46012
0644
edit
dl
rm
wasi.d.ts
7944
0644
edit
dl
rm
worker_threads.d.ts
37728
0644
edit
dl
rm
zlib.d.ts
27954
0644
edit
dl
rm
Edit:
/opt/canhelp/node_modules/@types/node/querystring.d.ts
(7125B)
/** * The `node:querystring` module provides utilities for parsing and formatting URL * query strings. It can be accessed using: * * ```js * import querystring from 'node:querystring'; * ``` * * `querystring` is more performant than `URLSearchParams` but is not a * standardized API. Use `URLSearchParams` when performance is not critical or * when compatibility with browser code is desirable. * @see [source](https://github.com/nodejs/node/blob/v22.x/lib/querystring.js) */ declare module "querystring" { interface StringifyOptions { /** * The function to use when converting URL-unsafe characters to percent-encoding in the query string. * @default `querystring.escape()` */ encodeURIComponent?: ((str: string) => string) | undefined; } interface ParseOptions { /** * Specifies the maximum number of keys to parse. Specify `0` to remove key counting limitations. * @default 1000 */ maxKeys?: number | undefined; /** * The function to use when decoding percent-encoded characters in the query string. * @default `querystring.unescape()` */ decodeURIComponent?: ((str: string) => string) | undefined; } interface ParsedUrlQuery extends NodeJS.Dict<string | string[]> {} interface ParsedUrlQueryInput extends NodeJS.Dict< | string | number | boolean | bigint | ReadonlyArray<string | number | boolean | bigint> | null > {} /** * The `querystring.stringify()` method produces a URL query string from a * given `obj` by iterating through the object's "own properties". * * It serializes the following types of values passed in `obj`: [string](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#String_type) | * [number](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Number_type) | * [bigint](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt) | * [boolean](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Boolean_type) | * [string\[\]](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#String_type) | * [number\[\]](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Number_type) | * [bigint\[\]](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt) | * [boolean\[\]](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Boolean_type) The numeric values must be finite. Any other input values will be coerced to * empty strings. * * ```js * querystring.stringify({ foo: 'bar', baz: ['qux', 'quux'], corge: '' }); * // Returns 'foo=bar&baz=qux&baz=quux&corge=' * * querystring.stringify({ foo: 'bar', baz: 'qux' }, ';', ':'); * // Returns 'foo:bar;baz:qux' * ``` * * By default, characters requiring percent-encoding within the query string will * be encoded as UTF-8\. If an alternative encoding is required, then an alternative `encodeURIComponent` option will need to be specified: * * ```js * // Assuming gbkEncodeURIComponent function already exists, * * querystring.stringify({ w: '中文', foo: 'bar' }, null, null, * { encodeURIComponent: gbkEncodeURIComponent }); * ``` * @since v0.1.25 * @param obj The object to serialize into a URL query string * @param [sep='&'] The substring used to delimit key and value pairs in the query string. * @param [eq='='] . The substring used to delimit keys and values in the query string. */ function stringify(obj?: ParsedUrlQueryInput, sep?: string, eq?: string, options?: StringifyOptions): string; /** * The `querystring.parse()` method parses a URL query string (`str`) into a * collection of key and value pairs. * * For example, the query string `'foo=bar&abc=xyz&abc=123'` is parsed into: * * ```json * { * "foo": "bar", * "abc": ["xyz", "123"] * } * ``` * * The object returned by the `querystring.parse()` method _does not_ prototypically inherit from the JavaScript `Object`. This means that typical `Object` methods such as `obj.toString()`, * `obj.hasOwnProperty()`, and others * are not defined and _will not work_. * * By default, percent-encoded characters within the query string will be assumed * to use UTF-8 encoding. If an alternative character encoding is used, then an * alternative `decodeURIComponent` option will need to be specified: * * ```js * // Assuming gbkDecodeURIComponent function already exists... * * querystring.parse('w=%D6%D0%CE%C4&foo=bar', null, null, * { decodeURIComponent: gbkDecodeURIComponent }); * ``` * @since v0.1.25 * @param str The URL query string to parse * @param [sep='&'] The substring used to delimit key and value pairs in the query string. * @param [eq='='] The substring used to delimit keys and values in the query string. */ function parse(str: string, sep?: string, eq?: string, options?: ParseOptions): ParsedUrlQuery; /** * The querystring.encode() function is an alias for querystring.stringify(). */ const encode: typeof stringify; /** * The querystring.decode() function is an alias for querystring.parse(). */ const decode: typeof parse; /** * The `querystring.escape()` method performs URL percent-encoding on the given `str` in a manner that is optimized for the specific requirements of URL * query strings. * * The `querystring.escape()` method is used by `querystring.stringify()` and is * generally not expected to be used directly. It is exported primarily to allow * application code to provide a replacement percent-encoding implementation if * necessary by assigning `querystring.escape` to an alternative function. * @since v0.1.25 */ function escape(str: string): string; /** * The `querystring.unescape()` method performs decoding of URL percent-encoded * characters on the given `str`. * * The `querystring.unescape()` method is used by `querystring.parse()` and is * generally not expected to be used directly. It is exported primarily to allow * application code to provide a replacement decoding implementation if * necessary by assigning `querystring.unescape` to an alternative function. * * By default, the `querystring.unescape()` method will attempt to use the * JavaScript built-in `decodeURIComponent()` method to decode. If that fails, * a safer equivalent that does not throw on malformed URLs will be used. * @since v0.1.25 */ function unescape(str: string): string; } declare module "node:querystring" { export * from "querystring"; }
Save
cmd:
run