| 6 | import ignore, { type Ignore } from "ignore"; |
| 7 | |
| 8 | export interface WalkOptions { |
| 9 | targetPath?: string; |
| 10 | depthLimit?: number; |
| 11 | rootDir: string; |
| 12 | } |
| 13 | |
| 14 | export interface FileEntry { |
| 15 | path: string; |
nothing calls this directly
no outgoing calls
no test coverage detected