mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 11:42:04 +08:00
13 lines
268 B
TypeScript
13 lines
268 B
TypeScript
/**
|
|
* Defines the supported character encodings.
|
|
*/
|
|
export declare 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;
|
|
}
|
|
|