UNPKG

@microsoft/msgraph-sdk-connections

Version:
25 lines 1.27 kB
import { type ConnectionsRequestBuilder } from './connections/index.js'; import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestAdapter } from '@microsoft/kiota-abstractions'; /** * The main entry point of the SDK, exposes the configuration and the fluent API. */ export interface ConnectionsServiceClient extends BaseRequestBuilder<ConnectionsServiceClient> { /** * Provides operations to manage the collection of externalConnection entities. */ get connections(): ConnectionsRequestBuilder; } /** * Instantiates a new ConnectionsServiceClient and sets the default values. * @param requestAdapter The request adapter to use to execute the requests. */ export declare function createConnectionsServiceClient(requestAdapter: RequestAdapter): ConnectionsServiceClient; /** * Metadata for all the navigation properties in the request builder. */ export declare const ConnectionsServiceClientNavigationMetadata: Record<Exclude<keyof ConnectionsServiceClient, KeysToExcludeForNavigationMetadata>, NavigationMetadata>; /** * Uri template for the request builder. */ export declare const ConnectionsServiceClientUriTemplate = "{+baseurl}"; //# sourceMappingURL=connectionsServiceClient.d.ts.map