Files
NativeScript/text/text.d.ts

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;
}
}