forked from NativeScript/NativeScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtext.d.ts
More file actions
40 lines (34 loc) · 814 Bytes
/
text.d.ts
File metadata and controls
40 lines (34 loc) · 814 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/**
* 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;
}
}