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 413 B
import { TinyType } from 'tiny-types'; import { Timestamp } from '../screenplay'; /** * Represents an internal domain event that occurs during test execution. * * @group Events */ export declare abstract class DomainEvent extends TinyType { readonly timestamp: Timestamp; /** * @param timestamp */ protected constructor(timestamp?: Timestamp); } //# sourceMappingURL=DomainEvent.d.ts.map