UNPKG

type-fns

Version:

A set of types, type checks, and type guards for simpler, safer, and easier to read code.

5 lines (4 loc) 186 B
import { NotNull } from './isNotNull'; import { IsDefined } from './isNotUndefined'; declare const assess: <T>(t: T) => t is NotNull<IsDefined<T>>; export { assess as isPresentAssess };