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 572 B
import type { JSONObject } from 'tiny-types'; import { CorrelationId, Description } from '../model/index.js'; import { Timestamp } from '../screenplay/index.js'; import { DomainEvent } from './DomainEvent.js'; /** * @group Events */ export declare class SceneTemplateDetected extends DomainEvent { readonly sceneId: CorrelationId; readonly template: Description; static fromJSON(o: JSONObject): SceneTemplateDetected; constructor(sceneId: CorrelationId, template: Description, timestamp?: Timestamp); } //# sourceMappingURL=SceneTemplateDetected.d.ts.map