forked from NativeScript/nativescript-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplatforms-data.ts
More file actions
31 lines (25 loc) · 718 Bytes
/
platforms-data.ts
File metadata and controls
31 lines (25 loc) · 718 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
///<reference path=".d.ts"/>
"use strict";
export class PlatformsData implements IPlatformsData {
private platformsData : { [index: string]: any } = {};
constructor($androidProjectService: IPlatformProjectService,
$iOSProjectService: IPlatformProjectService) {
this.platformsData = {
ios: $iOSProjectService.platformData,
android: $androidProjectService.platformData
}
}
public get platformsNames() {
return Object.keys(this.platformsData);
}
public getPlatformData(platform: string): IPlatformData {
return this.platformsData[platform];
}
public get availablePlatforms(): any {
return {
iOS: "ios",
Android: "android"
};
}
}
$injector.register("platformsData", PlatformsData);