UNPKG

@lytejs/query-string

Version:

A Query String Parser that actually works

9 lines (8 loc) 238 B
interface obj { [s: string]: string | number | boolean | Array<obj> | undefined | obj; } export declare const stringify: (params: obj) => string; export declare const parse: (query?: string) => { [key: string]: any; }; export {};