UNPKG

4.5

Version:

Monadic test assertions

8 lines (7 loc) 265 B
import { Assertion, Verification } from '../'; export declare function pass<T>(value: T): Assertion<T>; export declare class PassAssertion<T> implements Assertion<T> { private value; constructor(value: T); verify(verification: Verification<T>): void; }