UNPKG

fast-check

Version:

Property based testing framework for JavaScript (like QuickCheck)

4 lines (3 loc) 194 B
import { ICommand } from './ICommand'; export interface AsyncCommand<Model extends object, Real, CheckAsync extends boolean = false> extends ICommand<Model, Real, Promise<void>, CheckAsync> { }