1 | export * from './text-common';
|
2 |
|
3 | /**
|
4 | * Defines the supported character encodings.
|
5 | */
|
6 | export namespace encoding {
|
7 | /**
|
8 | * Denotes ISO-8859-1 character encoding.
|
9 | */
|
10 | export const ISO_8859_1: any;
|
11 |
|
12 | /**
|
13 | * Denotes US_ASCII character encoding.
|
14 | */
|
15 | export const US_ASCII: any;
|
16 |
|
17 | /**
|
18 | * Denotes UTF_16 character encoding.
|
19 | */
|
20 | export const UTF_16: any;
|
21 |
|
22 | /**
|
23 | * Denotes UTF_16BE character encoding.
|
24 | */
|
25 | export const UTF_16BE: any;
|
26 |
|
27 | /**
|
28 | * Denotes UTF_16LE character encoding.
|
29 | */
|
30 | export const UTF_16LE: any;
|
31 |
|
32 | /**
|
33 | * Denotes UTF_8 character encoding.
|
34 | */
|
35 | export const UTF_8: any;
|
36 | }
|