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

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