UNPKG

assertthat

Version:
5 lines (4 loc) 305 B
import { Result } from 'defekt'; import { AssertionFailed } from '../../../errors'; declare const assertActualIsNotContainingAnyOf: <TContent>(actual: string | Set<TContent> | TContent[], expected: (string | TContent)[]) => Result<undefined, AssertionFailed>; export { assertActualIsNotContainingAnyOf };