@hiero-hackers/hiero-notifications - v0.1.0
    Preparing search index...

    Interface Delivery

    Sends a notification somewhere. Payload-agnostic on purpose: it reads only the generic Notification fields, so one delivery serves every watcher. Where the I/O and secrets live.

    interface Delivery {
        name: string;
        deliver(notification: Notification): Promise<void>;
    }
    Index
    name: string