UNPKG

@flex-development/tutils

Version:
14 lines (11 loc) 255 B
/** * @file Type Definitions - OrUndefined * @module tutils/types/OrUndefined */ /** * Type representing a value that also be `undefined`. * * @template T - Value type */ type OrUndefined<T> = T | undefined export { type OrUndefined as default }