File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import appModule = require( "application" ) ;
2- import textModule = require( "text/text " ) ;
2+ import textModule = require( "text" ) ;
33
44export class FileSystemAccess {
55 private _pathSeparator = java . io . File . separator . toString ( ) ;
Original file line number Diff line number Diff line change 11import app_module = require( "application" ) ;
22import utilsModule = require( "utils/utils_ios" ) ;
3- import textModule = require( "text/text " ) ;
3+ import textModule = require( "text" ) ;
44
55// TODO: Implement all the APIs receiving callback using async blocks
66// TODO: Check whether we need try/catch blocks for the iOS implementation
Original file line number Diff line number Diff line change 11/**
22* Defines the supported character encodings.
33*/
4- export declare module encoding {
5- export var ISO_8859_1 : any ;
6- export var US_ASCII : any ;
7- export var UTF_16 : any ;
8- export var UTF_16BE : any ;
9- export var UTF_16LE : any ;
10- export var UTF_8 : any ;
4+ declare module "text" {
5+ export module encoding {
6+ export var ISO_8859_1 : any ;
7+ export var US_ASCII : any ;
8+ export var UTF_16 : any ;
9+ export var UTF_16BE : any ;
10+ export var UTF_16LE : any ;
11+ export var UTF_8 : any ;
12+ }
1113}
1214
You can’t perform that action at this time.
0 commit comments