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