@nativescript/core
Version:
A JavaScript library providing an easy to use api for interacting with iOS and Android platform APIs.
37 lines (30 loc) • 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;
}