/** * Storage.ts * * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT license. * * Web-specific implementation of the cross-platform database storage abstraction. */ import * as RX from '../common/Interfaces'; export declare class Storage extends RX.Storage { getItem(key: string): Promise; setItem(key: string, value: string): Promise; removeItem(key: string): Promise; clear(): Promise; } declare const _default: Storage; export default _default;