@serenity-js/core
Version:
The core Serenity/JS framework, providing the Screenplay Pattern interfaces, as well as the test reporting and integration infrastructure
9 lines • 329 B
TypeScript
import type { Answerable } from '../Answerable';
import type { Interaction } from '../Interaction';
/**
* @group Notes
*/
export interface ChainableSetter<T extends Record<any, any>> {
set<K extends keyof T>(key: K, value: Answerable<T[K]>): ChainableSetter<T> & Interaction;
}
//# sourceMappingURL=ChainableSetter.d.ts.map