homebridge-pushover-notification
Version:
Homebridge plugin to send push notifications through Pushover from HomeKit
17 lines (16 loc) • 377 B
TypeScript
import { PlatformConfig } from 'homebridge';
export interface PushoverNotificationConfig extends PlatformConfig {
user: string;
token: string;
messages: Message[];
}
export interface Message {
name: string;
title?: string;
message: string;
priority?: string;
retry?: number;
expire?: number;
sound?: string;
cooldownTime?: number;
}