All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
13 lines
414 B
TypeScript
13 lines
414 B
TypeScript
/**
|
|
* @module ol/uri
|
|
*/
|
|
/**
|
|
* Appends query parameters to a URI.
|
|
*
|
|
* @param {string} uri The original URI, which may already have query data.
|
|
* @param {!Object} params An object where keys are URI-encoded parameter keys,
|
|
* and the values are arbitrary types or arrays.
|
|
* @return {string} The new URI.
|
|
*/
|
|
export function appendParams(uri: string, params: any): string;
|
|
//# sourceMappingURL=uri.d.ts.map
|