Sha256: 9f633ecf3e065ff82c19eccab35c8aa1d6d5d1a49af282dc29ef5a64cca34164
Contents?: true
Size: 1007 Bytes
Versions: 1
Compression:
Stored size: 1007 Bytes
Contents
declare module "querystring" { interface StringifyOptions { encodeURIComponent?: (str: string) => string; } interface ParseOptions { maxKeys?: number; decodeURIComponent?: (str: string) => string; } interface ParsedUrlQuery extends NodeJS.Dict<string | string[]> { } interface ParsedUrlQueryInput extends NodeJS.Dict<string | number | boolean | string[] | number[] | boolean[] | null> { } function stringify(obj?: ParsedUrlQueryInput, sep?: string, eq?: string, options?: StringifyOptions): 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; function escape(str: string): string; function unescape(str: string): string; }
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
condenser-0.3 | lib/condenser/processors/node_modules/@types/node/querystring.d.ts |