@@ -15,9 +15,9 @@ interface IBuildPlatformAction {
15
15
}
16
16
17
17
interface IPlatformService extends IBuildPlatformAction , NodeJS . EventEmitter {
18
- cleanPlatforms ( platforms : string [ ] , platformTemplate : string , projectData : IProjectData , config : IPlatformOptions , framework ?: string ) : Promise < void > ;
18
+ cleanPlatforms ( platforms : string [ ] , projectData : IProjectData , config : IPlatformOptions , framework ?: string ) : Promise < void > ;
19
19
20
- addPlatforms ( platforms : string [ ] , platformTemplate : string , projectData : IProjectData , config : IPlatformOptions , frameworkPath ?: string ) : Promise < void > ;
20
+ addPlatforms ( platforms : string [ ] , projectData : IProjectData , config : IPlatformOptions , frameworkPath ?: string ) : Promise < void > ;
21
21
22
22
/**
23
23
* Gets list of all installed platforms (the ones for which <project dir>/platforms/<platform> exists).
@@ -48,7 +48,7 @@ interface IPlatformService extends IBuildPlatformAction, NodeJS.EventEmitter {
48
48
*/
49
49
removePlatforms ( platforms : string [ ] , projectData : IProjectData ) : Promise < void > ;
50
50
51
- updatePlatforms ( platforms : string [ ] , platformTemplate : string , projectData : IProjectData , config : IPlatformOptions ) : Promise < void > ;
51
+ updatePlatforms ( platforms : string [ ] , projectData : IProjectData , config : IPlatformOptions ) : Promise < void > ;
52
52
53
53
/**
54
54
* Ensures that the specified platform and its dependencies are installed.
@@ -316,7 +316,6 @@ interface IAddPlatformInfo extends IProjectDataComposition, IPlatformDataComposi
316
316
frameworkDir : string ;
317
317
installedVersion : string ;
318
318
config : IPlatformOptions ;
319
- platformTemplate ?: string ;
320
319
}
321
320
322
321
interface IPreparePlatformJSInfo extends IPreparePlatformCoreInfo , ICopyAppFilesData {
@@ -335,7 +334,7 @@ interface IPreparePlatformCoreInfo extends IPreparePlatformInfoBase, IOptionalPr
335
334
platformSpecificData : IPlatformSpecificData ;
336
335
}
337
336
338
- interface IPreparePlatformInfo extends IPreparePlatformInfoBase , IPlatformConfig , IPlatformTemplate , ISkipNativeCheckOptional { }
337
+ interface IPreparePlatformInfo extends IPreparePlatformInfoBase , IPlatformConfig , ISkipNativeCheckOptional { }
339
338
340
339
interface IPlatformConfig {
341
340
config : IPlatformOptions ;
0 commit comments