10 lines
195 B
TypeScript
10 lines
195 B
TypeScript
export interface NotificationOptions {
|
|
title: string;
|
|
message: string;
|
|
priority?: number;
|
|
}
|
|
|
|
export interface NotificationService {
|
|
notify(options: NotificationOptions): Promise<void>;
|
|
}
|