We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb5a9c1 commit 0fb2315Copy full SHA for 0fb2315
1 file changed
src/services/types.ts
@@ -102,18 +102,12 @@ export type ServiceMethodDynamicSegments<
102
HasRequiredMethodOptions<O> extends true
103
? (
104
segments: S,
105
- methodOptions: O & {
106
- query?: BaseServiceMethodOptions['query'];
107
- headers?: BaseServiceMethodOptions['headers'];
108
- },
+ methodOptions: O & BaseServiceMethodOptions,
109
sdkOptions?: SDKOptions,
110
) => Promise<R>
111
: (
112
113
- methodOptions?: O & {
114
115
116
+ methodOptions?: O & BaseServiceMethodOptions,
117
118
) => Promise<R>;
119
0 commit comments