UNPKG

@flex-development/tutils

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