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
Implement 'map' object types { string => T }, where all properties of the object are typed as T. Since a key of object is always string, left hand side of => is fixed to string. For example, env context only has string properties so it is typed as { string => string}. Previously its properties were typed any.
# typed as string (previously any)env.FOO# typed as { id: string; network: string; ports: object; } (previously any)job.services.redis
github.event.discussion.title and github.event.discussion.body are now checked as untrusted inputs.