(self: FileWatcher, paths: readonly string[])
| 270 | } |
| 271 | |
| 272 | export function remove_(self: FileWatcher, paths: readonly string[]): T.UIO<void> { |
| 273 | concrete(self) |
| 274 | |
| 275 | return self.remove(paths) |
| 276 | } |
| 277 | |
| 278 | export function remove(paths: readonly string[]) { |
| 279 | return (self: FileWatcher) => remove_(self, paths) |