summaryrefslogtreecommitdiff
path: root/src/sinks/ISink.ts
blob: aaacf357b5a0a4c2f9536fb982588ce8327a182c (plain)
1
2
3
4
5
6
7
import {IEvent} from '../core/IEvent';

export interface ISink {
    createEvent(event: IEvent): Promise<void>;

    commit(): Promise<void>
}