UNPKG

@flex-development/tutils

Version:
14 lines (11 loc) 252 B
/** * @file Type Definitions - OrPromise * @module tutils/types/OrPromise */ /** * Type representing an asynchronous or synchronous value. * * @template T - Value type */ type OrPromise<T> = Promise<T> | T export { type OrPromise as default }