/** * Defines a type that can be mixed with null and undefined. * @param T Any type. */ type Option = T | null | undefined export default Option