TS2498
error TS2498: Module
'node_modules/@types/ms/index'
usesexport =
and cannot be used withexport *
Broken Code ❌
index.ts
1 |
|
Fixed Code ✔️
If a third-party module uses a default export (indicated by the export =
syntax), you must use the default
keyword to re-export this module:
1 |
|