@karmaniverous/jeeves-watcher
    Preparing search index...

    Type Alias WatchEvent

    A watch event.

    type WatchEvent = {
        oldPath?: string;
        path: string;
        priority: "normal" | "low";
        type: "create" | "modify" | "delete" | "move";
    }
    Index

    Properties

    oldPath?: string

    Original path before move (populated only for move events).

    path: string

    File path associated with the event (new path for moves).

    priority: "normal" | "low"

    Event priority.

    type: "create" | "modify" | "delete" | "move"

    Event type.