mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-14 18:12:09 +08:00
37 lines
598 B
TypeScript
37 lines
598 B
TypeScript
export * from './text-common';
|
|
|
|
/**
|
|
* Defines the supported character encodings.
|
|
*/
|
|
export namespace encoding {
|
|
/**
|
|
* Denotes ISO-8859-1 character encoding.
|
|
*/
|
|
export const ISO_8859_1: any;
|
|
|
|
/**
|
|
* Denotes US_ASCII character encoding.
|
|
*/
|
|
export const US_ASCII: any;
|
|
|
|
/**
|
|
* Denotes UTF_16 character encoding.
|
|
*/
|
|
export const UTF_16: any;
|
|
|
|
/**
|
|
* Denotes UTF_16BE character encoding.
|
|
*/
|
|
export const UTF_16BE: any;
|
|
|
|
/**
|
|
* Denotes UTF_16LE character encoding.
|
|
*/
|
|
export const UTF_16LE: any;
|
|
|
|
/**
|
|
* Denotes UTF_8 character encoding.
|
|
*/
|
|
export const UTF_8: any;
|
|
}
|