| 3 | |
| 4 | // Common types |
| 5 | export interface BaseOptions { |
| 6 | sourceDir?: string; |
| 7 | artifactsDir?: string; |
| 8 | ignoreFiles?: string[]; |
| 9 | verbose?: boolean; |
| 10 | } |
| 11 | |
| 12 | // Build command types |
| 13 | export interface BuildOptions extends BaseOptions { |
nothing calls this directly
no outgoing calls
no test coverage detected