@@ -176,11 +176,8 @@ injector.require(
176176) ;
177177injector . require ( "platformCommandParameter" , "./platform-command-param" ) ;
178178registerBuiltInCommand <
179- typeof import ( "./commands/create-project" ) . createProjectCommandDefinition
180- > (
181- "create" ,
182- ( ) => require ( "./commands/create-project" ) . createProjectCommandDefinition ,
183- ) ;
179+ typeof import ( "./commands/create-project" ) . CreateProjectCommand
180+ > ( "create" , ( ) => require ( "./commands/create-project" ) . CreateProjectCommand ) ;
184181registerBuiltInCommand <
185182 typeof import ( "./commands/clean" ) . cleanCommandDefinition
186183> ( "clean" , ( ) => require ( "./commands/clean" ) . cleanCommandDefinition ) ;
@@ -206,22 +203,19 @@ registerBuiltInCommand<
206203 ( ) => require ( "./commands/list-platforms" ) . listPlatformsCommandDefinition ,
207204) ;
208205registerBuiltInCommand <
209- typeof import ( "./commands/add-platform" ) . addPlatformCommandDefinition
210- > (
211- "platform|add" ,
212- ( ) => require ( "./commands/add-platform" ) . addPlatformCommandDefinition ,
213- ) ;
206+ typeof import ( "./commands/add-platform" ) . AddPlatformCommand
207+ > ( "platform|add" , ( ) => require ( "./commands/add-platform" ) . AddPlatformCommand ) ;
214208registerBuiltInCommand <
215209 typeof import ( "./commands/remove-platform" ) . removePlatformCommandDefinition
216210> (
217211 "platform|remove" ,
218212 ( ) => require ( "./commands/remove-platform" ) . removePlatformCommandDefinition ,
219213) ;
220214registerBuiltInCommand <
221- typeof import ( "./commands/update-platform" ) . updatePlatformCommandDefinition
215+ typeof import ( "./commands/update-platform" ) . UpdatePlatformCommand
222216> (
223217 "platform|update" ,
224- ( ) => require ( "./commands/update-platform" ) . updatePlatformCommandDefinition ,
218+ ( ) => require ( "./commands/update-platform" ) . UpdatePlatformCommand ,
225219) ;
226220registerBuiltInCommand < typeof import ( "./commands/run" ) . runCommandDefinition > (
227221 "run|*all" ,
@@ -259,13 +253,15 @@ registerBuiltInCommand<typeof import("./commands/open").visionOpenCommand>(
259253 "open|vision" ,
260254 ( ) => require ( "./commands/open" ) . visionOpenCommand ,
261255) ;
262- registerBuiltInCommand <
263- typeof import ( "./commands/typings" ) . typingsCommandDefinition
264- > ( "typings" , ( ) => require ( "./commands/typings" ) . typingsCommandDefinition ) ;
256+ registerBuiltInCommand < typeof import ( "./commands/typings" ) . TypingsCommand > (
257+ "typings" ,
258+ ( ) => require ( "./commands/typings" ) . TypingsCommand ,
259+ ) ;
265260
266- registerBuiltInCommand <
267- typeof import ( "./commands/preview" ) . previewCommandDefinition
268- > ( "preview" , ( ) => require ( "./commands/preview" ) . previewCommandDefinition ) ;
261+ registerBuiltInCommand < typeof import ( "./commands/preview" ) . PreviewCommand > (
262+ "preview" ,
263+ ( ) => require ( "./commands/preview" ) . PreviewCommand ,
264+ ) ;
269265
270266registerBuiltInCommand < typeof import ( "./commands/debug" ) . iosDebugCommand > (
271267 "debug|ios" ,
@@ -312,8 +308,8 @@ registerBuiltInCommand<
312308> ( "deploy" , ( ) => require ( "./commands/deploy" ) . deployCommandDefinition ) ;
313309
314310registerBuiltInCommand <
315- typeof import ( "./commands/embedding/embed" ) . embedCommandDefinition
316- > ( "embed" , ( ) => require ( "./commands/embedding/embed" ) . embedCommandDefinition ) ;
311+ typeof import ( "./commands/embedding/embed" ) . EmbedCommand
312+ > ( "embed" , ( ) => require ( "./commands/embedding/embed" ) . EmbedCommand ) ;
317313
318314injector . require ( "testExecutionService" , "./services/test-execution-service" ) ;
319315injector . require (
@@ -342,9 +338,10 @@ registerBuiltInCommand<
342338 "test|visionos" ,
343339 ( ) => require ( "./commands/test" ) . testVisionOSCommandDefinition ,
344340) ;
345- registerBuiltInCommand <
346- typeof import ( "./commands/test-init" ) . testInitCommandDefinition
347- > ( "test|init" , ( ) => require ( "./commands/test-init" ) . testInitCommandDefinition ) ;
341+ registerBuiltInCommand < typeof import ( "./commands/test-init" ) . TestInitCommand > (
342+ "test|init" ,
343+ ( ) => require ( "./commands/test-init" ) . TestInitCommand ,
344+ ) ;
348345registerBuiltInCommand <
349346 typeof import ( "./commands/generate-help" ) . generateHelpCommandDefinition
350347> (
@@ -353,23 +350,20 @@ registerBuiltInCommand<
353350) ;
354351
355352registerBuiltInCommand <
356- typeof import ( "./commands/appstore-list" ) . listiOSAppsCommandDefinition
353+ typeof import ( "./commands/appstore-list" ) . ListiOSAppsCommand
357354> (
358355 "appstore|*list" ,
359- ( ) => require ( "./commands/appstore-list" ) . listiOSAppsCommandDefinition ,
356+ ( ) => require ( "./commands/appstore-list" ) . ListiOSAppsCommand ,
360357) ;
361358registerBuiltInCommand <
362- typeof import ( "./commands/appstore-upload" ) . publishIOSCommandDefinition
359+ typeof import ( "./commands/appstore-upload" ) . PublishIOSCommand
363360> (
364361 "appstore|upload" ,
365- ( ) => require ( "./commands/appstore-upload" ) . publishIOSCommandDefinition ,
362+ ( ) => require ( "./commands/appstore-upload" ) . PublishIOSCommand ,
366363) ;
367364registerBuiltInCommand <
368- typeof import ( "./commands/appstore-upload" ) . publishIOSCommandDefinition
369- > (
370- "publish|ios" ,
371- ( ) => require ( "./commands/appstore-upload" ) . publishIOSCommandDefinition ,
372- ) ;
365+ typeof import ( "./commands/appstore-upload" ) . PublishIOSCommand
366+ > ( "publish|ios" , ( ) => require ( "./commands/appstore-upload" ) . PublishIOSCommand ) ;
373367registerBuiltInCommand <
374368 typeof import ( "./commands/apple-login" ) . appleLoginCommandDefinition
375369> (
@@ -459,17 +453,16 @@ registerBuiltInCommand<
459453 require ( "./commands/plugin/update-plugin" ) . updatePluginCommandDefinition ,
460454) ;
461455registerBuiltInCommand <
462- typeof import ( "./commands/plugin/build-plugin" ) . buildPluginCommandDefinition
456+ typeof import ( "./commands/plugin/build-plugin" ) . BuildPluginCommand
463457> (
464458 "plugin|build" ,
465- ( ) => require ( "./commands/plugin/build-plugin" ) . buildPluginCommandDefinition ,
459+ ( ) => require ( "./commands/plugin/build-plugin" ) . BuildPluginCommand ,
466460) ;
467461registerBuiltInCommand <
468- typeof import ( "./commands/plugin/create-plugin" ) . createPluginCommandDefinition
462+ typeof import ( "./commands/plugin/create-plugin" ) . CreatePluginCommand
469463> (
470464 "plugin|create" ,
471- ( ) =>
472- require ( "./commands/plugin/create-plugin" ) . createPluginCommandDefinition ,
465+ ( ) => require ( "./commands/plugin/create-plugin" ) . CreatePluginCommand ,
473466) ;
474467
475468registerBuiltInCommand <
@@ -575,10 +568,10 @@ injector.require(
575568injector . require ( "messages" , "./common/messages/messages" ) ;
576569
577570registerBuiltInCommand <
578- typeof import ( "./commands/post-install" ) . postInstallCliCommandDefinition
571+ typeof import ( "./commands/post-install" ) . PostInstallCliCommand
579572> (
580573 "post-install-cli" ,
581- ( ) => require ( "./commands/post-install" ) . postInstallCliCommandDefinition ,
574+ ( ) => require ( "./commands/post-install" ) . PostInstallCliCommand ,
582575) ;
583576registerBuiltInCommand <
584577 typeof import ( "./commands/migrate" ) . migrateCommandDefinition
0 commit comments