I have a DO with the following method: ```ts async reserve(): Promise<Result> { if (this.status !
I have a DO with the following method:
but when called like this:
it "loses" the fact that it's a
So somewhere in transit that information seems to get lost (notice how the
but when called like this:
it "loses" the fact that it's a
ResultError, since the console.logs show:So somewhere in transit that information seems to get lost (notice how the
code isn't printed anymore. even checks with instanceof fail)... how can i deal with this?