HEX
Server: Apache
System: Linux pdx1-shared-a1-38 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64
User: mmickelson (3396398)
PHP: 8.1.31
Disabled: NONE
Upload Files
File: //usr/share/nodejs/querystring/encode.d.ts
/**
 * It serializes passed object into string
 * The numeric values must be finite.
 * Any other input values will be coerced to empty strings.
 *
 * @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
 * @param name
 */
export type encodeFuncType = (
  obj?: Record<any, unknown>,
  sep?: string,
  eq?: string,
  name?: any
) => string;

export default encodeFuncType;