@microsoft/kiota-abstractions
Version:
Core abstractions for kiota generated libraries in TypeScript and JavaScript
16 lines • 730 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";
/** Defines the contract for a factory that creates backing stores. */
export interface BackingStoreFactory {
/**
* Creates a new instance of the backing store.
* @returns a new instance of the backing store.
*/
createBackingStore(): BackingStore;
}
//# sourceMappingURL=backingStoreFactory.d.ts.map