Interface FileWatcher

interface FileWatcher {
    path: string;
    close(): void;
}

Properties

Methods

Properties

path: string

Path which is currently being watched.

Methods

  • Closes the watcher.

    Returns void