* var s = "http://example.com?a=1&b=2&c=3
* var uri = new pc.URI(s);
* var q = uri.getQuery();
* console.log(q.a); // logs "1"
* console.log(q.b); // logs "2"
* console.log(q.c); // logs "3"
*
*/
getQuery(): { [prop: string]: string };
/**
* @function
* @name pc.URI#setQuery
* @description Set the query section of the URI from a Object
* @param {Object} params Key-Value pairs to encode into the query string
* @example
* var s = "http://example.com";
* var uri = new pc.URI(s);
* uri.setQuery({"a":1,"b":2});
* console.log(uri.toString()); // logs "http://example.com?a=1&b=2
*/
setQuery(params: { [prop: string]: string | number }): void;
}
}