6 lines
213 B
TypeScript
6 lines
213 B
TypeScript
export interface NotificationProvider {
|
|
send(options: { to: string; subject: string; body: string; metadata?: any }): Promise<void>;
|
|
}
|
|
|
|
export type NotificationChannel = 'email' | 'whatsapp' | 'sms' | 'custom';
|