UNPKG

@serenity-js/core

Version:

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

11 lines 356 B
/** * An interface describing debugging data received by the callback function passed to [`Debug.values`](https://serenity-js.org/api/core/class/Debug/#values). * * @group Activities */ export interface DebuggingResult<T> { description: string; value: T | undefined; error: Error | undefined; } //# sourceMappingURL=DebuggingResult.d.ts.map