Some checks failed
Build & Deploy KLZ Cables / 🔍 Prepare Environment (push) Successful in 7s
Build & Deploy KLZ Cables / 🏗️ Build App (push) Successful in 4m3s
Build & Deploy KLZ Cables / 🏗️ Build Gatekeeper (push) Successful in 20s
Build & Deploy KLZ Cables / 🚀 Deploy (push) Has been cancelled
Build & Deploy KLZ Cables / ⚡ PageSpeed (push) Has been cancelled
Build & Deploy KLZ Cables / 🔔 Notifications (push) Has been cancelled
Build & Deploy KLZ Cables / 🧪 Quality Assurance (push) Has been cancelled
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>;
|
|
}
|