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
The type system allows import A from "arcsecond", but this doesn't actually work, as the value of A is undefined in this context.
My preferred remediation would be to export the A interface entirely as a default, so that the values actually exist. An alternative remediation is to fix the type system such that the above results in a type error, forcing people to use import * as A from "arcsecond".
The text was updated successfully, but these errors were encountered:
The type system allows
import A from "arcsecond"
, but this doesn't actually work, as the value ofA
is undefined in this context.My preferred remediation would be to export the A interface entirely as a default, so that the values actually exist. An alternative remediation is to fix the type system such that the above results in a type error, forcing people to use
import * as A from "arcsecond"
.The text was updated successfully, but these errors were encountered: