UNPKG

@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 (7 loc) 193 B
import type { Timestamp } from './Timestamp'; /** * @group Time */ export interface DelayedCallback<Result> { (stats: { currentTime: Timestamp, i: number }): Promise<Result> | Result; }