UNPKG

homebridge-pushover-notification

Version:

Homebridge plugin to send push notifications through Pushover from HomeKit

18 lines (17 loc) 463 B
import type { Logging } from 'homebridge'; export interface MessageRequest { message: string; title?: string; priority?: number; retry?: number; expire?: number; device?: string; sound?: string; } export declare class PushoverClient { private readonly token; private readonly user; private readonly log; constructor(token: string, user: string, log: Logging); sendMessage(request: MessageRequest): Promise<void>; }