import { assertAnyIsNotNull } from '../../forAny/assertAnyIsNotNull'; import { AssertionFailed } from '../../../errors'; import { Result } from 'defekt'; const assertActualIsNotNull = function ( actual: any ): Result { return assertAnyIsNotNull(actual); }; export { assertActualIsNotNull };