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
Declaring an optional property in an interface breaks the syntax highlighting. For example, the url?: string highlighting stays white, but if you remove the ? it will highlight the type properly.
interfaceOptions{url?: string}
vs.
interfaceOptions{url: string}
The text was updated successfully, but these errors were encountered:
Declaring an optional property in an interface breaks the syntax highlighting. For example, the
url?: string
highlighting stays white, but if you remove the?
it will highlight the type properly.vs.
The text was updated successfully, but these errors were encountered: