* Stop watching for file changes.
()
| 1082 | * Stop watching for file changes. |
| 1083 | */ |
| 1084 | unwatch(): void { |
| 1085 | if (this.watcher) { |
| 1086 | this.watcher.stop(); |
| 1087 | this.watcher = null; |
| 1088 | } |
| 1089 | } |
| 1090 | |
| 1091 | /** |
| 1092 | * Check if the file watcher is active. |
no test coverage detected