| 19 | ******************************************************************************/ |
| 20 | |
| 21 | export interface ICommand { |
| 22 | command: string; |
| 23 | |
| 24 | description: string; |
| 25 | |
| 26 | option: Array<[string?, string?, string?]>; |
| 27 | |
| 28 | action(...args): void; |
| 29 | } |
| 30 | |
| 31 | export type ArrayOption = Array<[string?, string?, string?]>; |
no outgoing calls
no test coverage detected