UNPKG

@serenity-js/core

Version:

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

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