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
Error: The expression of an export assignment must be an identifier or qualified name in an ambient context.
This error is new in Typescript 2.6. It disallows the export of expressions, including object literals like { Store, install }. We found this error when testing popular packages with Typescript 2.6 RC.
The text was updated successfully, but these errors were encountered:
Version
3.0.0
Reproduction link
microsoft/TypeScript#18444
Steps to reproduce
What is expected?
No error.
What is actually happening?
Error: The expression of an export assignment must be an identifier or qualified name in an ambient context.
This error is new in Typescript 2.6. It disallows the export of expressions, including object literals like
{ Store, install }
. We found this error when testing popular packages with Typescript 2.6 RC.The text was updated successfully, but these errors were encountered: