(debounceMs: number, onChange: () => void)
| 7 | private onChange: () => void; |
| 8 | |
| 9 | constructor(debounceMs: number, onChange: () => void) { |
| 10 | this.debounceMs = debounceMs; |
| 11 | this.onChange = onChange; |
| 12 | } |
| 13 | |
| 14 | watchPaths(paths: string[]): void { |
| 15 | this.close(); |
nothing calls this directly
no outgoing calls
no test coverage detected