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
{{ message }}
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.
In incremental mode we have to translate typedefs without seeing the original definitions.
For example:
is translated to:
However, in closure land when one writes
@type {!StringOrNull}
the correct translation is not: StringOrNull
but ratherNonNullable<StringOrNull>
.Thankfully, classes and interfaces are non-nullable by default in TS, so for them this is not an issue.
The text was updated successfully, but these errors were encountered: