Merge pull request #4774 from zeldigas/patch-1

missing allowed parameters for methods
This commit is contained in:
Horiuchi_H
2015-07-01 12:25:51 +09:00
+2
View File
@@ -9,10 +9,12 @@ declare module uri {
interface URI {
absoluteTo(path: string): URI;
absoluteTo(path: URI): URI;
addFragment(fragment: string): URI;
addQuery(qry: string): URI;
addQuery(qry: Object): URI;
addSearch(qry: string): URI;
addSearch(key: string, value:any): URI;
addSearch(qry: Object): URI;
authority(): string;
authority(authority: string): URI;