Skip to content

Commit f7ba7af

Browse files
committed
Update index.d.ts
1 parent 378fda8 commit f7ba7af

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

src/index.d.ts

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -765,6 +765,8 @@ declare namespace admin.projectManagement {
765765
appId: string;
766766
displayName?: string;
767767
platform: AppPlatform;
768+
projectId: string;
769+
resourceName: string;
768770
}
769771

770772
enum AppPlatform {
@@ -775,11 +777,14 @@ declare namespace admin.projectManagement {
775777

776778
interface AndroidAppMetadata extends AppMetadata {
777779
platform: AppPlatform.ANDROID;
778-
resourceName: string;
779-
projectId: string;
780780
packageName: string;
781781
}
782782

783+
interface IosAppMetadata extends AppMetadata {
784+
platform: AppPlatform.IOS;
785+
bundleId: string;
786+
}
787+
783788
interface AndroidApp {
784789
appId: string;
785790

@@ -791,13 +796,6 @@ declare namespace admin.projectManagement {
791796
getConfig(): Promise<string>;
792797
}
793798

794-
interface IosAppMetadata extends AppMetadata {
795-
platform: AppPlatform.IOS;
796-
resourceName: string;
797-
projectId: string;
798-
bundleId: string;
799-
}
800-
801799
interface IosApp {
802800
appId: string;
803801

0 commit comments

Comments
 (0)