mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
Rename the files
This commit is contained in:
40
tns-core-modules/text/text.d.ts
vendored
Normal file
40
tns-core-modules/text/text.d.ts
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
/**
|
||||
* Defines specific text related enumerations.
|
||||
*/
|
||||
declare module "text" {
|
||||
/**
|
||||
* Defines the supported character encodings.
|
||||
*/
|
||||
module encoding {
|
||||
/**
|
||||
* Denotes ISO-8859-1 character encoding.
|
||||
*/
|
||||
export var ISO_8859_1: any;
|
||||
|
||||
/**
|
||||
* Denotes US_ASCII character encoding.
|
||||
*/
|
||||
export var US_ASCII: any;
|
||||
|
||||
/**
|
||||
* Denotes UTF_16 character encoding.
|
||||
*/
|
||||
export var UTF_16: any;
|
||||
|
||||
/**
|
||||
* Denotes UTF_16BE character encoding.
|
||||
*/
|
||||
export var UTF_16BE: any;
|
||||
|
||||
/**
|
||||
* Denotes UTF_16LE character encoding.
|
||||
*/
|
||||
export var UTF_16LE: any;
|
||||
|
||||
/**
|
||||
* Denotes UTF_8 character encoding.
|
||||
*/
|
||||
export var UTF_8: any;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user