Renamed image-impl to image-native. Renamed console-helper to console-native.

This commit is contained in:
atanasovg
2014-05-15 11:33:53 +03:00
parent 6264f82f85
commit 4f791e5c31
9 changed files with 16 additions and 16 deletions

8
image/image-native.d.ts vendored Normal file
View File

@@ -0,0 +1,8 @@
/**
* This module is used as a native implementation for each of the underlying platforms.
* Users will not typically require it as it supports the module infrastructure.
*/
export declare function fromResource(name: string): any;
export declare function fromFile(path: string): any;
export declare function fromData(data: any): any;
export declare function saveToFile(instance: any, path: string, format: number, quality?: number): boolean;