| 4 | import { UNKNOWN_OBJ } from './types'; |
| 5 | |
| 6 | interface ConfigFileOptions { |
| 7 | __configFile?: { |
| 8 | options?: UNKNOWN_OBJ; |
| 9 | scripts?: UNKNOWN_OBJ; |
| 10 | filePath: string; |
| 11 | }; |
| 12 | } |
| 13 | |
| 14 | export type GlobalOptions = { |
| 15 | appDataDir?: string; |
nothing calls this directly
no outgoing calls
no test coverage detected