@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 • 573 B
TypeScript
import type { JSONObject } from 'tiny-types';
import { Artifact, CorrelationId, Name } from '../model';
import { Timestamp } from '../screenplay';
import { DomainEvent } from './DomainEvent';
/**
* @group Events
*/
export declare class ArtifactGenerated extends DomainEvent {
readonly sceneId: CorrelationId;
readonly name: Name;
readonly artifact: Artifact;
static fromJSON(o: JSONObject): ArtifactGenerated;
constructor(sceneId: CorrelationId, name: Name, artifact: Artifact, timestamp?: Timestamp);
}
//# sourceMappingURL=ArtifactGenerated.d.ts.map