@microsoft/msgraph-sdk
Version:
Microsoft Graph JavaScript client library
19 lines • 1.07 kB
TypeScript
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 GraphServiceClient extends BaseRequestBuilder<GraphServiceClient> {
}
/**
* Instantiates a new GraphServiceClient and sets the default values.
* @param requestAdapter The request adapter to use to execute the requests.
*/
export declare function createGraphServiceClient(requestAdapter: RequestAdapter): GraphServiceClient;
type NavigationMetadataType = Partial<Record<Exclude<keyof GraphServiceClient, KeysToExcludeForNavigationMetadata>, NavigationMetadata>>;
export declare function extendGraphServiceClient(clientNavigationMetadata?: NavigationMetadataType, clientRequestsMetadata?: RequestsMetadata): void;
/**
* Uri template for the request builder.
*/
export declare const GraphServiceClientUriTemplate = "{+baseurl}";
export {};
//# sourceMappingURL=graphServiceClient.d.ts.map