@netvlies/utility-collection
Version:
Collection of frequently used utilities by Netvlies
11 lines (10 loc) • 347 B
TypeScript
declare class DynamicURL {
private url;
constructor(url: string);
private logger;
setQueryParams(query: Record<string, unknown>): this;
setRouteParams(replaceValue: string | Record<string, string>): this;
setDynamicRoute(replaceValue: string | Record<string, string>): this;
resolve(): string;
}
export { DynamicURL };