@microsoft/msgraph-beta-sdk-teams
Version:
Teams fluent API for Microsoft Graph
26 lines • 1.32 kB
TypeScript
import { type TeamsRequestBuilder } from './teams/index.js';
import { type BackingStoreFactory, type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestAdapter } from '@microsoft/kiota-abstractions';
/**
* Instantiates a new TeamsServiceClient 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 createTeamsServiceClient(requestAdapter: RequestAdapter, backingStore?: BackingStoreFactory | undefined): TeamsServiceClient;
/**
* The main entry point of the SDK, exposes the configuration and the fluent API.
*/
export interface TeamsServiceClient extends BaseRequestBuilder<TeamsServiceClient> {
/**
* Provides operations to manage the collection of team entities.
*/
get teams(): TeamsRequestBuilder;
}
/**
* Metadata for all the navigation properties in the request builder.
*/
export declare const TeamsServiceClientNavigationMetadata: Record<Exclude<keyof TeamsServiceClient, KeysToExcludeForNavigationMetadata>, NavigationMetadata>;
/**
* Uri template for the request builder.
*/
export declare const TeamsServiceClientUriTemplate = "{+baseurl}";
//# sourceMappingURL=teamsServiceClient.d.ts.map