diff --git a/urijs/URIjs.d.ts b/urijs/URIjs.d.ts index b59dad6aad..7bab32074e 100644 --- a/urijs/URIjs.d.ts +++ b/urijs/URIjs.d.ts @@ -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;