( definition: CommandMetadata<Name, Input>, )
| 38 | }; |
| 39 | |
| 40 | export function defineCommandMetadata<Name extends string, Input>( |
| 41 | definition: CommandMetadata<Name, Input>, |
| 42 | ): CommandMetadata<Name, Input> { |
| 43 | return definition; |
| 44 | } |
| 45 | |
| 46 | export function defineExecutableCommand<Name extends string, Input, Result>( |
| 47 | metadata: CommandMetadata<Name, Input>, |
no outgoing calls
no test coverage detected
searching dependent graphs…