Files
evento/dist/core/entities/notification-rule.entity.d.ts
2026-03-18 14:55:56 -03:00

10 lines
486 B
TypeScript

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