Workers service binding Typescript types uses Rpc.Stub<null>
Hi team,
I cannot get TS return types working as expected when calling a method via service binding between Workers. My goal is to have the service return in the form:
and then the caller can do:
The issue is that the generated TS types for the service use
Rpc.Stub<null>
instead of raw null
. And this does not play nice with anything the caller would want to do afterwards. For example, if (error)
does not work to check if we're in the error case, since Rpc.Stub<null> != null
; and the same null-check doesn't work for the data
object.
Btw, it appears to only use Rpc.Stub<>
for null
and undefined
. For all other types (number, boolean, custom types, etc) , the generated TS uses the actual type.0 Replies