According to the documentation provided by AWS Amplify:
import { Storage, StorageProvider } from 'aws-amplify';
export default class MyStorageProvider implements StorageProvider {
Check out this link for more information.
Encountering an error in my Angular 8 application where the import fails with the following message:
The module '"node_modules/aws-amplify/lib-esm"' does not export member 'StorageProvider'. Should I be using 'import StorageProvider from "/node_modules/aws-amplify/lib-esm"' instead?
Current Version being used: "aws-amplify": "^2.2.2"
Can anyone help figure out what's causing this issue? Appreciate your assistance!