UNPKG

@flex-development/tutils

Version:
12 lines (11 loc) 253 B
/** * @file Type Definitions - OneOrMany * @module tutils/types/OneOrMany */ /** * Restricts a type to type `T` or an array of `T` values. * * @template T - Value type */ declare type OneOrMany<T> = T | T[]; export { type OneOrMany as default };