assertthat
Version:
assertthat provides fluent TDD.
7 lines (6 loc) • 566 B
TypeScript
import { CombinedAssertions } from './CombinedAssertions';
declare const getCombinedAssertions: <TAny>(actual: TAny) => CombinedAssertions<TAny>;
declare const getNegatedCombinedAssertions: <TAny>(actual: TAny) => CombinedAssertions<TAny>;
declare const getCombinedAssertionsForEach: <TAny>(actual: TAny) => CombinedAssertions<TAny>;
declare const getNegatedCombinedAssertionsForEach: <TAny>(actual: TAny) => CombinedAssertions<TAny>;
export { getCombinedAssertions, getNegatedCombinedAssertions, getCombinedAssertionsForEach, getNegatedCombinedAssertionsForEach };