import { union } from '../compose/index.mjs'; import { undefinedType } from '../primitives/index.mjs'; import { type Type } from '../type.mjs'; export const nullable = (type: Type): Type => union([type, undefinedType]);