diff --git a/packages/aws-amplify/__tests__/exports.test.ts b/packages/aws-amplify/__tests__/exports.test.ts index 69ee2dee24b..3fd3015112b 100644 --- a/packages/aws-amplify/__tests__/exports.test.ts +++ b/packages/aws-amplify/__tests__/exports.test.ts @@ -41,6 +41,10 @@ describe('aws-amplify Exports', () => { "Cache", "ConsoleLogger", "ServiceWorker", + "CookieStorage", + "defaultStorage", + "sessionStorage", + "sharedInMemoryStorage", ] `); }); diff --git a/packages/aws-amplify/src/utils/index.ts b/packages/aws-amplify/src/utils/index.ts index c32d42a964f..7ea4a20be8b 100644 --- a/packages/aws-amplify/src/utils/index.ts +++ b/packages/aws-amplify/src/utils/index.ts @@ -10,4 +10,9 @@ export { Cache, ConsoleLogger, ServiceWorker, + CookieStorage, + defaultStorage, + sessionStorage, + sharedInMemoryStorage, + KeyValueStorageInterface, } from '@aws-amplify/core';