Files
Panayot Cankov 05cd636fc8 npm scripts for typechecking public .d.ts-es and running tslint (#2934)
* npm scripts for typechecking public .d.ts-es and running tslint

* Update test.ts
2016-10-27 15:18:54 +03:00

40 lines
813 B
TypeScript

/**
* Defines specific text related enumerations.
*/
declare module "text" {
/**
* Defines the supported character encodings.
*/
module encoding {
/**
* Denotes ISO-8859-1 character encoding.
*/
export var ISO_8859_1: any;
/**
* Denotes US_ASCII character encoding.
*/
export var US_ASCII: any;
/**
* Denotes UTF_16 character encoding.
*/
export var UTF_16: any;
/**
* Denotes UTF_16BE character encoding.
*/
export var UTF_16BE: any;
/**
* Denotes UTF_16LE character encoding.
*/
export var UTF_16LE: any;
/**
* Denotes UTF_8 character encoding.
*/
export var UTF_8: any;
}
}