UNPKG

assertthat

Version:
5 lines (4 loc) 345 B
import { Result } from 'defekt'; import { AssertionFailed } from '../../../errors'; declare const assertActualIsNotAtLeast: <TKey, TContent>(actual: number | object | Map<TKey, TContent> | Set<TContent>, expected: number | object | Map<TKey, TContent> | Set<TContent>) => Result<undefined, AssertionFailed>; export { assertActualIsNotAtLeast };