| 24 | import * as execa from 'execa'; |
| 25 | |
| 26 | export interface Logger { |
| 27 | log: (...args: Array<{}>) => void; |
| 28 | error: (...args: Array<{}>) => void; |
| 29 | dir: (obj: {}, options?: {}) => void; |
| 30 | } |
| 31 | |
| 32 | export interface Options { |
| 33 | dryRun: boolean; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…