Restate Typescript SDK
    Preparing search index...

    Type Alias FutureValues<T>

    FutureValues: {
        -readonly [P in keyof T]: T[P] extends Future<infer U> ? U : never
    }

    Map a tuple of Futures to the tuple of their value types. For [Future<A>, Future<B>] produces [A, B]. For an unbounded Future<X>[] produces X[].

    Type Parameters

    • T extends readonly Future<unknown>[] | []