You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The file server/src/flow.ts has type GetContext which now turns into never when server context is never. This needs updating.
Alternatively, maybe switch from never server context into something else like undefined? The never type has caused already a bit of a havoc after introducing it, as it doesn't always behave as one would expect (e.g. X extends never ? A : B doesn't work like expected, etc).
The text was updated successfully, but these errors were encountered:
Might as well also expose the version of createTypicalServerFlow which takes squashed endpoint as argument, so that reconstructing the large RegExp can be avoided e.g. on every lambda startup
The file
server/src/flow.ts
has typeGetContext
which now turns intonever
when server context isnever
. This needs updating.Alternatively, maybe switch from
never
server context into something else likeundefined
? Thenever
type has caused already a bit of a havoc after introducing it, as it doesn't always behave as one would expect (e.g.X extends never ? A : B
doesn't work like expected, etc).The text was updated successfully, but these errors were encountered: