Wreck 7.0.0 - naming convention fix

This commit is contained in:
Marcin Porebski
2015-12-01 15:39:21 +01:00
parent 117d429754
commit 73a82c7c31
+3 -3
View File
@@ -11,9 +11,9 @@ declare module "wreck"
import stream = require('stream');
interface IWreckObject
interface WreckObject
{
defaults: (options: any) => IWreckObject;
defaults: (options: any) => WreckObject;
request: (method: string, uri: string, options: any, callback?: (err: any, response: http.IncomingMessage) => void) => http.ClientRequest;
@@ -35,7 +35,7 @@ declare module "wreck"
};
}
var wreck: IWreckObject;
var wreck: WreckObject;
export = wreck;
}