fix(sdk): unbreak typecheck on dev after v2 error widening (#28503)

This commit is contained in:
Kit Langton
2026-05-20 14:29:19 -04:00
committed by GitHub
parent 0e118d1961
commit ba803dd89a
3 changed files with 20 additions and 2 deletions
@@ -144,7 +144,7 @@ type SseFn = <
TResponseStyle extends ResponseStyle = "fields",
>(
options: Omit<RequestOptions<TData, TResponseStyle, ThrowOnError>, "method">,
) => Promise<ServerSentEventsResult<TData, TError>>
) => Promise<ServerSentEventsResult<TData>>
type RequestFn = <
TData = unknown,