Updated the text module with ambient declaration.

This commit is contained in:
atanasovg
2014-06-03 10:40:01 +03:00
parent 36c1910cb2
commit 3fcb0e8e40
3 changed files with 11 additions and 9 deletions

16
text/text.d.ts vendored
View File

@ -1,12 +1,14 @@
/**
* Defines the supported character encodings.
*/
export declare module encoding {
export var ISO_8859_1: any;
export var US_ASCII: any;
export var UTF_16: any;
export var UTF_16BE: any;
export var UTF_16LE: any;
export var UTF_8: any;
declare module "text" {
export module encoding {
export var ISO_8859_1: any;
export var US_ASCII: any;
export var UTF_16: any;
export var UTF_16BE: any;
export var UTF_16LE: any;
export var UTF_8: any;
}
}