10 lines
217 B
TypeScript
10 lines
217 B
TypeScript
export interface NotificationMessage {
|
|
title: string;
|
|
message: string;
|
|
priority?: number; // 0-10, Gotify style
|
|
}
|
|
|
|
export interface NotificationService {
|
|
notify(message: NotificationMessage): Promise<void>;
|
|
}
|