(self: FileWatcher, paths: readonly string[])
| 260 | } |
| 261 | |
| 262 | export function add_(self: FileWatcher, paths: readonly string[]): T.UIO<void> { |
| 263 | concrete(self) |
| 264 | |
| 265 | return self.add(paths) |
| 266 | } |
| 267 | |
| 268 | export function add(paths: readonly string[]) { |
| 269 | return (self: FileWatcher) => add_(self, paths) |