UNPKG

@microsoft/msgraph-beta-sdk-groups

Version:
26 lines 1.33 kB
import { type GroupsRequestBuilder } from './groups/index.js'; import { type BackingStoreFactory, type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestAdapter } from '@microsoft/kiota-abstractions'; /** * Instantiates a new GroupsServiceClient 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 createGroupsServiceClient(requestAdapter: RequestAdapter, backingStore?: BackingStoreFactory | undefined): GroupsServiceClient; /** * 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; } /** * 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