HEX
Server: Apache
System: Linux pdx1-shared-a2-09 6.6.116-grsec-jammy-dirty #1 SMP Sat Nov 8 00:02:42 UTC 2025 x86_64
User: dh_pvsc7i (5084578)
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;