10 lines
312 B
TypeScript
10 lines
312 B
TypeScript
export interface NotificationProvider {
|
|
send(options: {
|
|
to: string;
|
|
subject: string;
|
|
body: string;
|
|
metadata?: any;
|
|
}): Promise<void>;
|
|
}
|
|
export type NotificationChannel = 'email' | 'whatsapp' | 'sms' | 'custom';
|
|
//# sourceMappingURL=notification-provider.interface.d.ts.map
|