Skip to main content

Type Alias: Promisable<T>

Promisable<T> = T | Promise<T>

Type that can be a value or a Promise of that value. Used for functions that may return immediately or asynchronously.

Type Parameters

T

T