Files
NativeScript/tns-core-modules/text/text.d.ts
Panayot Cankov d098ff43f5 Add module names for the typedoc, make it work
Mark members with @private for typedoc.
2017-04-20 16:58:30 +03:00

41 lines
708 B
TypeScript

/**
* @module "text"
*
* Defines specific text related enumerations.
*/ /** */
/**
* Defines the supported character encodings.
*/
export 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;
}