( usage: UsageInstance, validation: ValidationInstance, globalMiddleware: GlobalMiddleware, shim: PlatformShim )
| 783 | |
| 784 | // Adds support to yargs for lazy loading a hierarchy of commands: |
| 785 | export function command( |
| 786 | usage: UsageInstance, |
| 787 | validation: ValidationInstance, |
| 788 | globalMiddleware: GlobalMiddleware, |
| 789 | shim: PlatformShim |
| 790 | ) { |
| 791 | return new CommandInstance(usage, validation, globalMiddleware, shim); |
| 792 | } |
| 793 | |
| 794 | export interface CommandHandlerDefinition |
| 795 | extends Partial< |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…