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
In the context that we don't split input model and output model, I prefer to generate as any. Because unknown will require customer to guard each access check and any doesn't need this.
Just one point to note here, any -> unknown is a breaking while unknown -> any is not.
Here are the options:
unknown
Record<string, unknown>
orRecord<string, any>
(link)any
The text was updated successfully, but these errors were encountered: