Skip to content

Commit 3481c75

Browse files
committed
Remove unneeded frameUrl property
1 parent efa6d6b commit 3481c75

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

lib/definitions/platform.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,4 @@ interface IPlatformService {
99

1010
interface IPlatformCapabilities {
1111
targetedOS?: string[];
12-
frameworkUrl: string;
1312
}

lib/services/platform-service.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,9 @@ export class PlatformService implements IPlatformService {
1010

1111
private platformCapabilities: { [key: string]: IPlatformCapabilities } = {
1212
ios: {
13-
targetedOS: ['darwin'],
14-
frameworkUrl: ""
13+
targetedOS: ['darwin']
1514
},
1615
android: {
17-
frameworkUrl: ""
1816
}
1917
};
2018

0 commit comments

Comments
 (0)