| 24 | |
| 25 | export type Content = string | Buffer; |
| 26 | export interface Result { |
| 27 | status: "create" | "skip" | "overwrite" | "error" | "identical"; |
| 28 | content: Content; |
| 29 | } |
| 30 | |
| 31 | export interface GlobalConfig { |
| 32 | overwriteAll: boolean; |
nothing calls this directly
no outgoing calls
no test coverage detected