(path: string, options: WatchOptions = {})
| 699 | } |
| 700 | |
| 701 | watchAsync(path: string, options: WatchOptions = {}): AsyncIterable<WatchEvent> { |
| 702 | return createWatchAsyncIterable(this.watch(path, options)); |
| 703 | } |
| 704 | |
| 705 | // watchFile / unwatchFile fire on stat changes at a single path |
| 706 | // (not the directory under it). Different semantics from watch(); |
no test coverage detected