flexiblepersistence
Version:
A CQRS and Event Sourcing platform
12 lines • 415 B
TypeScript
import { IEvent } from './iEvent';
import { DirectedEvent } from './directedEvent';
import { Operation } from './operation';
export declare class Event extends DirectedEvent {
protected operation: Operation;
protected name: string;
protected getConstructorName(object: any): any;
constructor(event: IEvent);
getOperation(): Operation;
getName(): string;
}
//# sourceMappingURL=event.d.ts.map