UNPKG

@serenity-js/core

Version:

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

16 lines 775 B
import type { JSONObject } from 'tiny-types'; import { Path } from '../io/index.js'; import type { ArtifactType } from '../model/index.js'; import { CorrelationId, Name } from '../model/index.js'; import { Timestamp } from '../screenplay/index.js'; import { ArtifactArchived } from './ArtifactArchived.js'; /** * @group Events */ export declare class ActivityRelatedArtifactArchived extends ArtifactArchived { readonly activityId: CorrelationId; static fromJSON(o: JSONObject): ActivityRelatedArtifactArchived; constructor(sceneId: CorrelationId, activityId: CorrelationId, name: Name, type: ArtifactType, path: Path, artifactTimestamp: Timestamp, timestamp?: Timestamp); toJSON(): JSONObject; } //# sourceMappingURL=ActivityRelatedArtifactArchived.d.ts.map