UNPKG

url-lib

Version:

A simple, lightweight string utility for Node and browsers that supports serializing and parsing URLs and query strings.

6 lines (5 loc) 226 B
export declare type UrlParamValue = string | number | boolean | object | null | undefined; export interface UrlParams { [key: string]: UrlParamValue; } export declare type NullableUrlParams = UrlParams | null | undefined;