siegel
Version:
Web application development ecosystem
10 lines (9 loc) • 329 B
TypeScript
/**
* Replaces URL params with actual param values
*
* @param url - URL to populate
* @param params - Object that represents params values where key is URL param key and value is param value
* @returns Populated URL
*/
declare function populateURLParams(url: string, params: Obj): string;
export default populateURLParams;