| 119 | } |
| 120 | |
| 121 | export interface MiddlewareCallback { |
| 122 | ( |
| 123 | argv: Arguments, |
| 124 | yargs: YargsInstance |
| 125 | ): Partial<Arguments> | Promise<Partial<Arguments>>; |
| 126 | } |
| 127 | |
| 128 | export interface Middleware extends MiddlewareCallback { |
| 129 | applyBeforeValidation: boolean; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…