UNPKG

@serenity-js/core

Version:

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

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