Library API
    Preparing search index...

    Type Alias Evaluable<T>

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

    Represents a value that can either be a direct scalar or a synchronous supplier function.

    Type Parameters

    • T