UNPKG

@microsoft/msgraph-beta-sdk

Version:
19 lines 1.11 kB
import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestAdapter, RequestsMetadata } from '@microsoft/kiota-abstractions'; /** * The main entry point of the SDK, exposes the configuration and the fluent API. */ export interface GraphBetaServiceClient extends BaseRequestBuilder<GraphBetaServiceClient> { } /** * Instantiates a new GraphBetaServiceClient and sets the default values. * @param requestAdapter The request adapter to use to execute the requests. */ export declare function createGraphBetaServiceClient(requestAdapter: RequestAdapter): GraphBetaServiceClient; type NavigationMetadataType = Partial<Record<Exclude<keyof GraphBetaServiceClient, KeysToExcludeForNavigationMetadata>, NavigationMetadata>>; export declare function extendGraphBetaServiceClient(clientNavigationMetadata?: NavigationMetadataType, clientRequestsMetadata?: RequestsMetadata): void; /** * Uri template for the request builder. */ export declare const GraphBetaServiceClientUriTemplate = "{+baseurl}"; export {}; //# sourceMappingURL=graphBetaServiceClient.d.ts.map