Files
NativeScript/nativescript-core/text/index.android.ts
Nathan Walker 6336eac4b5 chore: cleanup
2020-07-11 11:03:37 -07:00

11 lines
284 B
TypeScript

export * from './text-common';
export module encoding {
export const ISO_8859_1 = 'ISO-8859-1';
export const US_ASCII = 'US-ASCII';
export const UTF_16 = 'UTF-16';
export const UTF_16BE = 'UTF-16BE';
export const UTF_16LE = 'UTF-16LE';
export const UTF_8 = 'UTF-8';
}