local-settings naming changed to use "-"

This commit is contained in:
Vladimir Enchev
2014-05-15 09:44:15 +03:00
parent a1db810eec
commit a19fbf85a6
13 changed files with 23 additions and 25 deletions

8
image/image-impl.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;