Library API
    Preparing search index...

    Type Alias AsyncEvaluable<T>

    AsyncEvaluable: T | PromiseLike<T> | (() => T | PromiseLike<T>)
    🔍 Expanded Type Evaluation (Compiler API)
    type AsyncEvaluable<T> = T | PromiseLike<T> | (() => T | PromiseLike<T>)

    Represents a value that can either be a direct scalar, a Promise, a thenable (such as Pledge), a synchronous supplier function, or an asynchronous supplier function.

    Type Parameters

    • T