mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-15 19:26:42 +08:00

* feat(http): binary upload support * feat(http): better binary support & XHR support * fix: linting issue * chore: moved files from old place to the new one * chore: Updated NativeScript.api.md * feat(http): support both ByteBuffer and String Co-authored-by: Vasil Trifonov <v.trifonov@gmail.com>
11 lines
296 B
TypeScript
11 lines
296 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";
|
|
}
|