UNPKG

search-params

Version:

A module to manipulate search part of URLs (querystring)

8 lines (7 loc) 265 B
export declare const getSearch: (path: string) => string; export declare const isSerialisable: (val: any) => boolean; export interface IParsedName { hasBrackets: boolean; name: string; } export declare const parseName: (name: string) => IParsedName;