UNPKG

@serenity-js/core

Version:

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

14 lines 566 B
import type { JSONObject } from 'tiny-types'; import { CorrelationId, Description } from '../model'; import { Timestamp } from '../screenplay'; import { DomainEvent } from './DomainEvent'; /** * @group Events */ export declare class FeatureNarrativeDetected extends DomainEvent { readonly sceneId: CorrelationId; readonly description: Description; static fromJSON(o: JSONObject): FeatureNarrativeDetected; constructor(sceneId: CorrelationId, description: Description, timestamp?: Timestamp); } //# sourceMappingURL=FeatureNarrativeDetected.d.ts.map