Type alias PropMapUriEncodingCallbackFn

PropMapUriEncodingCallbackFn: ((name, value) => [string, any] | [string, any, boolean] | any | undefined)

Type declaration

    • (name, value): [string, any] | [string, any, boolean] | any | undefined
    • A callback function for URI encoding.

      The function will be passed property name and value arguments, and must return either undefined to skip the property, a 2-element array with the property name and value to use, or anything else to use the property as-is.

      Parameters

      • name: string
      • value: any

      Returns [string, any] | [string, any, boolean] | any | undefined

Generated using TypeDoc