Initial commit - Event Planner application
This commit is contained in:
10
dist/core/entities/notification-rule.entity.d.ts
vendored
Normal file
10
dist/core/entities/notification-rule.entity.d.ts
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
import { EntitySchema } from '@mikro-orm/core';
|
||||
import { BaseEntity } from './base.entity';
|
||||
export declare class NotificationRule extends BaseEntity {
|
||||
module: string;
|
||||
event: string;
|
||||
channels: Array<'email' | 'whatsapp' | 'sms' | 'custom'>;
|
||||
conditions?: Record<string, any>;
|
||||
}
|
||||
export declare const NotificationRuleSchema: EntitySchema<NotificationRule, never, import("@mikro-orm/core").EntityCtor<NotificationRule>>;
|
||||
//# sourceMappingURL=notification-rule.entity.d.ts.map
|
||||
Reference in New Issue
Block a user