Initial commit - Event Planner application
This commit is contained in:
10
dist/core/services/notification-provider.interface.d.ts
vendored
Normal file
10
dist/core/services/notification-provider.interface.d.ts
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
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
|
||||
Reference in New Issue
Block a user