Files
Stefan Andres Charsley e293367dfc feat(http): better binary support & XHR support (#7707)
* 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>
2020-01-28 15:22:32 +02:00

42 lines
748 B
TypeScript

/**
* Defines specific text related enumerations.
* @module "text"
*/ /** */
export * from "./text-common";
/**
* Defines the supported character encodings.
*/
export module 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;
}