Renamed image module to image-source. Extended the testRunner to accept module name to run.

This commit is contained in:
atanasovg
2014-05-15 16:13:33 +03:00
parent 9a0fb96d62
commit c946c24ae2
17 changed files with 75 additions and 71 deletions

View File

@ -1,7 +1,7 @@
/**
* The http client interface.
*/
import image_module = require("image/image");
import image_module = require("image-source/image-source");
import promises = require("promises/promises");
export declare function request(options: HttpRequestOptions): promises.Promise<HttpResponse>;
@ -24,5 +24,5 @@ export interface HttpContent {
raw: any;
toString: () => string;
toJSON: () => any;
toImage: () => image_module.Image;
toImage: () => image_module.ImageSource;
}