UNPKG

offensive

Version:

Fast and boilerplate-free precondition checks for javascript.

13 lines (12 loc) 428 B
import { Assertion, ContractFunction } from '../../model'; import '../Null'; import '../Undefined'; import '../../connectors'; import '../../operators/or'; /** * @author Maciej Chałapuk (maciej@chalapuk.pl) */ export declare class EmptyAssertion<T> implements Assertion<T> { assert(varName: string, testedValue: T, contract: ContractFunction): import("../../Builder").OperatorBuilder<T>; } export default EmptyAssertion;