UNPKG

@microsoft/msgraph-beta-sdk-termstore

Version:
26 lines 1.36 kB
import { type TermStoreRequestBuilder } from './termStore/index.js'; import { type BackingStoreFactory, type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestAdapter } from '@microsoft/kiota-abstractions'; /** * Instantiates a new TermStoreServiceClient and sets the default values. * @param backingStore The backing store to use for the models. * @param requestAdapter The request adapter to use to execute the requests. */ export declare function createTermStoreServiceClient(requestAdapter: RequestAdapter, backingStore?: BackingStoreFactory | undefined): TermStoreServiceClient; /** * The main entry point of the SDK, exposes the configuration and the fluent API. */ export interface TermStoreServiceClient extends BaseRequestBuilder<TermStoreServiceClient> { /** * Provides operations to manage the store singleton. */ get termStore(): TermStoreRequestBuilder; } /** * Metadata for all the navigation properties in the request builder. */ export declare const TermStoreServiceClientNavigationMetadata: Record<Exclude<keyof TermStoreServiceClient, KeysToExcludeForNavigationMetadata>, NavigationMetadata>; /** * Uri template for the request builder. */ export declare const TermStoreServiceClientUriTemplate = "{+baseurl}"; //# sourceMappingURL=termStoreServiceClient.d.ts.map