Endo
    Preparing search index...

    Type Alias RemoteFunctions<T>

    RemoteFunctions: 0 extends 1 & T
        ? any
        : T extends RemotableBrand<infer L, infer R>
            ? PickCallable<R>
            : T extends PromiseLike<infer U> ? RemoteFunctions<U> : T

    Type Parameters

    • T