@aws-amplify/core
Version:
Core category of aws-amplify
15 lines (12 loc) • 356 B
text/typescript
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
import { KeyValueStorage } from './KeyValueStorage';
import { getLocalStorageWithFallback } from './utils';
/**
* @internal
*/
export class DefaultStorage extends KeyValueStorage {
constructor() {
super(getLocalStorageWithFallback());
}
}