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
There's a long discussion in microsoft/TypeScript#4665 about this. We can prevent possible global pollution problems by removing module declarations, and just using plain old ES6 import/exports within reselect.d.ts, as long as the first statement in the file is import or export.
Plus, it's a lot more familiar, since it directly mirrors ES6 modules.
The text was updated successfully, but these errors were encountered:
There's a long discussion in microsoft/TypeScript#4665 about this. We can prevent possible global pollution problems by removing module declarations, and just using plain old ES6 import/exports within
reselect.d.ts
, as long as the first statement in the file isimport
orexport
.Plus, it's a lot more familiar, since it directly mirrors ES6 modules.
The text was updated successfully, but these errors were encountered: