@microsoft/kiota-abstractions
Version:
Core abstractions for kiota generated libraries in TypeScript and JavaScript
15 lines • 648 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 contracts for a model that is backed by a store. */
export interface BackedModel {
/**
* Gets the store that is backing the model.
*/
backingStore?: BackingStore;
}
//# sourceMappingURL=backedModel.d.ts.map