@microsoft/kiota-abstractions
Version:
Core abstractions for kiota generated libraries in TypeScript and JavaScript
13 lines • 728 B
TypeScript
/**
* -------------------------------------------------------------------------------------------
* 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