UNPKG

ts-toolbelt

Version:

TypeScript's largest utility library

10 lines (9 loc) 188 B
/** * Add `undefined | null` to `U` * @param U to make nullable * @returns [[Union]] * @example * ```ts * ``` */ export declare type Nullable<U extends any> = U | undefined | null;