UNPKG

@microsoft/msgraph-sdk-shares

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