UNPKG

inserturlparams

Version:
5 lines (4 loc) 233 B
export type TParam = string | number | boolean | null | undefined; export type TParamObj = Record<string, TParam>; declare function formatUrl(url: string, pathParams: TParamObj | TParam[] | TParam): string; export default formatUrl;