UNPKG

@microsoft/msgraph-sdk-groups

Version:
25 lines 1.19 kB
import { type GroupsRequestBuilder } from './groups/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 GroupsServiceClient extends BaseRequestBuilder<GroupsServiceClient> { /** * Provides operations to manage the collection of group entities. */ get groups(): GroupsRequestBuilder; } /** * Instantiates a new GroupsServiceClient and sets the default values. * @param requestAdapter The request adapter to use to execute the requests. */ export declare function createGroupsServiceClient(requestAdapter: RequestAdapter): GroupsServiceClient; /** * Metadata for all the navigation properties in the request builder. */ export declare const GroupsServiceClientNavigationMetadata: Record<Exclude<keyof GroupsServiceClient, KeysToExcludeForNavigationMetadata>, NavigationMetadata>; /** * Uri template for the request builder. */ export declare const GroupsServiceClientUriTemplate = "{+baseurl}"; //# sourceMappingURL=groupsServiceClient.d.ts.map