(path: string, callback: () => void)
| 380 | } |
| 381 | |
| 382 | private watchPath(path: string, callback: () => void): void { |
| 383 | this.watchedPaths.push(path) |
| 384 | watchFile(path, { interval: WATCH_INTERVAL_MS }, callback) |
| 385 | } |
| 386 | |
| 387 | /** |
| 388 | * Watch the loose ref file for the current branch. |
no test coverage detected