| 1 | import { watch, type FSWatcher } from "fs"; |
| 2 | |
| 3 | export class SkillWatcher { |
| 4 | private watchers: FSWatcher[] = []; |
| 5 | private debounceTimer: number | null = null; |
| 6 | private debounceMs: number; |
nothing calls this directly
no outgoing calls
no test coverage detected