@@ -5,33 +5,27 @@ interface IAndroidResourcesMigrationService {
5
5
}
6
6
7
7
interface ILogger {
8
- setLevel ( level : string ) : void ;
8
+ initialize ( opts ?: any ) : void ;
9
+ initializeCliLogger ( ) : void ;
9
10
getLevel ( ) : string ;
10
11
fatal ( formatStr ?: any , ...args : any [ ] ) : void ;
11
12
error ( formatStr ?: any , ...args : any [ ] ) : void ;
12
13
warn ( formatStr ?: any , ...args : any [ ] ) : void ;
13
- warnWithLabel ( formatStr ?: any , ...args : any [ ] ) : void ;
14
14
info ( formatStr ?: any , ...args : any [ ] ) : void ;
15
15
debug ( formatStr ?: any , ...args : any [ ] ) : void ;
16
16
trace ( formatStr ?: any , ...args : any [ ] ) : void ;
17
17
printMarkdown ( ...args : any [ ] ) : void ;
18
- out ( formatStr ?: any , ...args : any [ ] ) : void ;
19
- write ( ...args : any [ ] ) : void ;
20
18
prepare ( item : any ) : string ;
21
- printInfoMessageOnSameLine ( message : string ) : void ;
22
- printMsgWithTimeout ( message : string , timeout : number ) : Promise < void > ;
19
+ isVerbose ( ) : boolean ;
23
20
}
24
21
25
22
interface IPlatformData {
26
23
frameworkPackageName : string ;
27
24
platformProjectService : IPlatformProjectService ;
28
25
projectRoot : string ;
29
26
normalizedPlatformName : string ;
27
+ platformNameLowerCase : string ;
30
28
appDestinationDirectoryPath : string ;
31
- deviceBuildOutputPath : string ;
32
- emulatorBuildOutputPath ?: string ;
33
- validPackageNamesForDevice : string [ ] ;
34
- validPackageNamesForEmulator ?: string [ ] ;
35
29
frameworkFilesExtensions : string [ ] ;
36
30
frameworkDirectoriesExtensions ?: string [ ] ;
37
31
frameworkDirectoriesNames ?: string [ ] ;
@@ -73,3 +67,11 @@ interface IProjectData {
73
67
getAppResourcesDirectoryPath ( projectDir ?: string ) : string ;
74
68
getAppResourcesRelativeDirectoryPath ( ) : string ;
75
69
}
70
+
71
+ interface IPlatformsDataService {
72
+ getPlatformData ( platform : string , projectData : IProjectData ) : IPlatformData ;
73
+ }
74
+
75
+ interface IInjector {
76
+ resolve < T > ( name : string , ctorArguments ?: any ) : any ;
77
+ }
0 commit comments