( cmd: DefinitionOrCommandName[] )
| 847 | } |
| 848 | |
| 849 | function isCommandAndAliases( |
| 850 | cmd: DefinitionOrCommandName[] |
| 851 | ): cmd is [CommandHandlerDefinition, ...string[]] { |
| 852 | return cmd.every(c => typeof c === 'string'); |
| 853 | } |
| 854 | |
| 855 | export function isCommandBuilderCallback( |
| 856 | builder: CommandBuilder |
no outgoing calls
no test coverage detected
searching dependent graphs…