From 66da3cc9887465691ef5cae5364d7f217601956f Mon Sep 17 00:00:00 2001 From: atanasovg Date: Wed, 14 May 2014 14:50:44 +0300 Subject: [PATCH] Fixed app module initialization (renaming to small letters) --- image/image.d.ts | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/image/image.d.ts b/image/image.d.ts index b0edcbb0c..0d3aa1411 100644 --- a/image/image.d.ts +++ b/image/image.d.ts @@ -1,4 +1,6 @@ -/** +import promises = require("promises/promises"); + +/** * Defines the recognized image formats. */ export declare enum ImageFormat { @@ -76,4 +78,6 @@ export declare function fromData(data: any): Image; * Creates a new Image instance and sets the provided native bitmap object. * The native bitmap object will update either the android or ios properties, depending on the target os. */ -export declare function fromNativeBitmap(source: any): Image; \ No newline at end of file +export declare function fromNativeBitmap(source: any): Image; + +// export declare function fromUrl \ No newline at end of file