UNPKG

assertthat

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