mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-15 19:26:42 +08:00
40 lines
716 B
TypeScript
40 lines
716 B
TypeScript
/**
|
|
* Defines specific text related enumerations.
|
|
* @module "text"
|
|
*/ /** */
|
|
|
|
/**
|
|
* Defines the supported character encodings.
|
|
*/
|
|
export module encoding {
|
|
/**
|
|
* Denotes ISO-8859-1 character encoding.
|
|
*/
|
|
export const ISO_8859_1: any;
|
|
|
|
/**
|
|
* Denotes US_ASCII character encoding.
|
|
*/
|
|
export const US_ASCII: any;
|
|
|
|
/**
|
|
* Denotes UTF_16 character encoding.
|
|
*/
|
|
export const UTF_16: any;
|
|
|
|
/**
|
|
* Denotes UTF_16BE character encoding.
|
|
*/
|
|
export const UTF_16BE: any;
|
|
|
|
/**
|
|
* Denotes UTF_16LE character encoding.
|
|
*/
|
|
export const UTF_16LE: any;
|
|
|
|
/**
|
|
* Denotes UTF_8 character encoding.
|
|
*/
|
|
export const UTF_8: any;
|
|
}
|