Type alias InvocationService<C, A>

InvocationService<C, A>: A extends `${infer Base}/${infer Path}`
    ? {
        [Key in Base]: InvocationService<C, Path>
    }
    : {
        [Key in A]: ServiceMethod<C, any, any>
    }

Type Parameters

Generated using TypeDoc