UNPKG

@serenity-js/core

Version:

The core Serenity/JS framework, providing the Screenplay Pattern interfaces, as well as the test reporting and integration infrastructure

13 lines 518 B
import type { JSONObject } from 'tiny-types'; import { CorrelationId } from '../model/index.js'; import { Timestamp } from '../screenplay/index.js'; import { DomainEvent } from './DomainEvent.js'; /** * @group Events */ export declare class AsyncOperationCompleted extends DomainEvent { readonly correlationId: CorrelationId; static fromJSON(o: JSONObject): AsyncOperationCompleted; constructor(correlationId: CorrelationId, timestamp?: Timestamp); } //# sourceMappingURL=AsyncOperationCompleted.d.ts.map