UNPKG

fast-check

Version:

Property based testing framework for JavaScript (like QuickCheck)

11 lines (10 loc) 270 B
import type { ICommand } from './ICommand.js'; /** * Interface that should be implemented in order to define * a synchronous command * * @remarks Since 1.5.0 * @public */ export interface Command<Model extends object, Real> extends ICommand<Model, Real, void> { }