SubServiceInvocations<T, Path>: {
    [Key in keyof T]: T[Key] extends ServiceMethod<infer C, infer _R, infer _X>
        ? IssuedInvocation<C>
        : SubServiceInvocations<Path, Key & string>
}[keyof T]

Type Parameters

  • T

  • Path extends string

Generated using TypeDoc