@rws-air/webcomponents
Version:
Standard Webcomponents for AIR projects
10 lines • 454 B
TypeScript
/**
* Safely stringifies queryparameters and prefixes a `?`.
* Applies URL encoding with `encodeURIComponent()`.
* In case an empty object was provided an empty string is returned
* @param params Queryparams to stringify
* @returns Stringified params or empty string
* @see [`@favware/querystring`](https://favware.tech/querystring)
*/
export declare const routeQueryParser: <T>(params: T) => string;
//# sourceMappingURL=routeQueryParser.d.ts.map