Files
evento/dist/todo/subscribers/todo.subscriber.d.ts
2026-03-18 14:55:56 -03:00

10 lines
557 B
TypeScript

import { NotificationService } from '../../core/services/notification.service';
import { NotificationRuleService } from '../../core/services/notification-rule.service';
export declare class TodoSubscriber {
private readonly notificationService;
private readonly notificationRuleService;
constructor(notificationService: NotificationService, notificationRuleService: NotificationRuleService);
handleTodoCreated(payload: any): Promise<void>;
handleTodoCompleted(payload: any): Promise<void>;
}
//# sourceMappingURL=todo.subscriber.d.ts.map