MethodsWithoutResponseType
MethodsWithoutResponseType<
S,RT> ={ [K in keyof S["methods"]]: S["methods"][K]["responseType"] extends RT ? never : K }[keyofS["methods"]]
Defined in: packages/core/src/schema-types.ts:120
Extract method names that do NOT have a specific response type.
Used to constrain send() to reject methods with responseType: "stream".
Type Parameters
Section titled “Type Parameters”S extends Schema
RT extends string