UNPKG

@microsoft/msgraph-beta-sdk-applications

Version:
26 lines 1.42 kB
import { type ApplicationsRequestBuilder } from './applications/index.js'; import { type BackingStoreFactory, 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 ApplicationsServiceClient extends BaseRequestBuilder<ApplicationsServiceClient> { /** * Provides operations to manage the collection of application entities. */ get applications(): ApplicationsRequestBuilder; } /** * Instantiates a new ApplicationsServiceClient 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 createApplicationsServiceClient(requestAdapter: RequestAdapter, backingStore?: BackingStoreFactory | undefined): ApplicationsServiceClient; /** * Metadata for all the navigation properties in the request builder. */ export declare const ApplicationsServiceClientNavigationMetadata: Record<Exclude<keyof ApplicationsServiceClient, KeysToExcludeForNavigationMetadata>, NavigationMetadata>; /** * Uri template for the request builder. */ export declare const ApplicationsServiceClientUriTemplate = "{+baseurl}"; //# sourceMappingURL=applicationsServiceClient.d.ts.map