| 10 | import { Paths } from './paths'; |
| 11 | |
| 12 | export interface Command { |
| 13 | group: string; |
| 14 | name: string; |
| 15 | help?: string; |
| 16 | isAuthAction?: boolean; |
| 17 | isPublicAction?: boolean; |
| 18 | args?: string[]; |
| 19 | options?: Options; |
| 20 | |
| 21 | action: (args: ActionArgs) => Promise<void>; |
| 22 | } |
| 23 | |
| 24 | export interface Options { |
| 25 | [longOption: string]: Option; |
nothing calls this directly
no outgoing calls
no test coverage detected