File tree Expand file tree Collapse file tree 1 file changed +7
-9
lines changed Expand file tree Collapse file tree 1 file changed +7
-9
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments