/** * ------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. * See License in the project root for license information. * ------------------------------------------------------------------------------------------- */ import type { BackingStore } from "./backingStore.js"; import type { BackingStoreFactory } from "./backingStoreFactory.js"; /** This class is used to create instances of InMemoryBackingStore */ export declare class InMemoryBackingStoreFactory implements BackingStoreFactory { createBackingStore(): BackingStore; } //# sourceMappingURL=inMemoryBackingStoreFactory.d.ts.map