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
typescript: Module import styles changed for JavaScript and TypeScript.
JavaScript
// beforeconstSimpleAPIClient=require('@moqada/simple-api-client');constSimpleAPIClientfrom'@moqada/simple-api-client';// after: changed in require styleconst{SimpleAPIClient}=require('@moqada/simple-api-client');// after: not changed in import styleconstSimpleAPIClientfrom'@moqada/simple-api-client';
TypeScript
// before
import SimpleAPIClient from '@moqada/simple-api-client';
// after
import {SimpleAPIClient} from '@moqada/simple-api-client';