pushover-sdk
    Preparing search index...

    Type Alias MessageOptions

    MessageOptions: {
        attachment?: Attachment;
        device?: string | string[];
        message: string;
        sound?: Sound;
        timestamp?: number | Date;
        title?: string;
        ttl?: number;
        user?: string | string[];
    } & ({ url: string | URL; urlTitle?: string } | { url?: undefined }) & (
        | { html: boolean }
        | { monospace: boolean }
        | { html?: undefined; monospace?: undefined }
    ) & (
        | { priority?: Exclude<Priority, EMERGENCY> }
        | {
            callback?: string | URL;
            expire: number;
            priority: EMERGENCY;
            retry: number;
            tags?: string[];
        }
    )