@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 (10 loc) • 311 B
text/typescript
/**
* 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;
}