UNPKG

@flex-development/tutils

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