mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
Added merge_module function. Added text module (currently having encoding only). Updated the FileSystem File object with readText, writeText methods (removed the FileReader, FileWriter classes).
This commit is contained in:
8
text/text.android.ts
Normal file
8
text/text.android.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
export module encoding {
|
||||
export var ISO_8859_1 = "ISO-8859-1";
|
||||
export var US_ASCII = "US-ASCII";
|
||||
export var UTF_16 = "UTF-16";
|
||||
export var UTF_16BE = "UTF-16BE";
|
||||
export var UTF_16LE = "UTF-16LE";
|
||||
export var UTF_8 = "UTF-8";
|
||||
}
|
||||
Reference in New Issue
Block a user