Files
evento/src/core/services/notification-provider.interface.ts
2026-03-18 14:55:56 -03:00

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';