UNPKG

@microsoft/msgraph-beta-sdk-solutions

Version:
26 lines 1.36 kB
import { type SolutionsRequestBuilder } from './solutions/index.js'; import { type BackingStoreFactory, type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestAdapter } from '@microsoft/kiota-abstractions'; /** * Instantiates a new SolutionsServiceClient 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 createSolutionsServiceClient(requestAdapter: RequestAdapter, backingStore?: BackingStoreFactory | undefined): SolutionsServiceClient; /** * The main entry point of the SDK, exposes the configuration and the fluent API. */ export interface SolutionsServiceClient extends BaseRequestBuilder<SolutionsServiceClient> { /** * Provides operations to manage the solutionsRoot singleton. */ get solutions(): SolutionsRequestBuilder; } /** * Metadata for all the navigation properties in the request builder. */ export declare const SolutionsServiceClientNavigationMetadata: Record<Exclude<keyof SolutionsServiceClient, KeysToExcludeForNavigationMetadata>, NavigationMetadata>; /** * Uri template for the request builder. */ export declare const SolutionsServiceClientUriTemplate = "{+baseurl}"; //# sourceMappingURL=solutionsServiceClient.d.ts.map