Interface FileSystemWatcher

interface FileSystemWatcher {
    globPattern: GlobPattern;
    kind?: number;
}

Properties

Properties

globPattern: GlobPattern

The glob pattern to watch. See glob pattern for more detail.

3.17.0 support for relative patterns.

kind?: number

The kind of events of interest. If omitted it defaults to WatchKind.Create | WatchKind.Change | WatchKind.Delete which is 7.