mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 11:42:04 +08:00
41 lines
814 B
TypeScript
41 lines
814 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;
|
|
}
|
|
}
|
|
|