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
This should improve the developer experience as described here:
https://basarat.gitbook.io/typescript/main-1/defaultisbad
- use named export instead of default export
- make the workaround the primary entry point of this module
Please migrate your code as follows:
```diff
- import listStandardValueSets from '@mdapi-issues/listmetadata-standardvalueset/lib/workaround'
+ import { listStandardValueSets } from '@mdapi-issues/listmetadata-standardvalueset'
```
0 commit comments