UNPKG

@microsoft/msgraph-beta-sdk-external

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