Fix allowing config passed in to rest.wrap

This commit is contained in:
Wim
2014-12-18 13:33:23 +13:00
parent 3ec86215aa
commit 1b41dcf721
+1 -1
View File
@@ -14,7 +14,7 @@ declare module "rest" {
function rest(request: rest.Request): rest.ResponsePromise;
module rest {
export function wrap(interceptor: Interceptor): Client;
export function wrap(interceptor: Interceptor, config?: any): Client;
export interface Request {
method?: string;