UNPKG

@kbfront/kb-ui

Version:

KB React UI Library

11 lines (10 loc) 285 B
import { Location } from "history"; interface IGetParams { query: string; } interface IParams { getParams: (queryName: string, location: Location) => IGetParams; setParams: (queryName: string, value: string) => string; } export declare const URLParams: IParams; export {};