mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-17 04:41:36 +08:00
15 lines
311 B
TypeScript
15 lines
311 B
TypeScript
/**
|
|
* Defines the supported character encodings.
|
|
*/
|
|
declare module "text" {
|
|
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;
|
|
}
|
|
}
|
|
|