FsWatchBinding import { FsWatchBinding } from "destack:fs/binding"; Filesystem watch binding family. export interface FsWatchBinding { open(entry: &'a readonly FilesystemEntry, options: FileWatchOptions): Result; close(watch: WatchHandle): Result; read(watch: WatchHandle, events: &'a [FileWatchEvent], paths: &'b PathBuffer): Result; } language/library/src/fs/binding/watch.ds:124:158 Members open(entry: &'a readonly FilesystemEntry, options: FileWatchOptions): Result Start watching one filesystem entry. close(watch: WatchHandle): Result Stop watching and release the watch handle. read(watch: WatchHandle, events: &'a [FileWatchEvent], paths: &'b PathBuffer): Result Read watch events into an output slice.