@serenity-js/core
Version:
The core Serenity/JS framework, providing the Screenplay Pattern interfaces, as well as the test reporting and integration infrastructure
20 lines • 772 B
TypeScript
import type { JSONObject } from 'tiny-types';
import { Path } from '../io';
import type { ArtifactType } from '../model';
import { CorrelationId, Name } from '../model';
import { Timestamp } from '../screenplay';
import { DomainEvent } from './DomainEvent';
/**
* @group Events
*/
export declare class ArtifactArchived extends DomainEvent {
readonly sceneId: CorrelationId;
readonly name: Name;
readonly type: ArtifactType;
readonly path: Path;
readonly artifactTimestamp: Timestamp;
static fromJSON(o: JSONObject): ArtifactArchived;
constructor(sceneId: CorrelationId, name: Name, type: ArtifactType, path: Path, artifactTimestamp: Timestamp, timestamp?: Timestamp);
toJSON(): JSONObject;
}
//# sourceMappingURL=ArtifactArchived.d.ts.map