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