@mbc-cqrs-serverless/core
Version:
CQRS and event base core
10 lines (9 loc) • 423 B
TypeScript
import { IEventHandler } from '../../interfaces';
import { AppSyncService } from '../appsync.service';
import { NotificationEvent } from './notification.event';
export declare class NotificationEventHandler implements IEventHandler<NotificationEvent> {
private readonly appSyncService;
private readonly logger;
constructor(appSyncService: AppSyncService);
execute(event: NotificationEvent): Promise<any>;
}