@microsoft/msgraph-sdk-chats
Version:
Chats fluent API for Microsoft Graph
25 lines • 1.18 kB
TypeScript
import { type ChatsRequestBuilder } from './chats/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 ChatsServiceClient extends BaseRequestBuilder<ChatsServiceClient> {
/**
* Provides operations to manage the collection of chat entities.
*/
get chats(): ChatsRequestBuilder;
}
/**
* Instantiates a new ChatsServiceClient and sets the default values.
* @param requestAdapter The request adapter to use to execute the requests.
*/
export declare function createChatsServiceClient(requestAdapter: RequestAdapter): ChatsServiceClient;
/**
* Metadata for all the navigation properties in the request builder.
*/
export declare const ChatsServiceClientNavigationMetadata: Record<Exclude<keyof ChatsServiceClient, KeysToExcludeForNavigationMetadata>, NavigationMetadata>;
/**
* Uri template for the request builder.
*/
export declare const ChatsServiceClientUriTemplate = "{+baseurl}";
//# sourceMappingURL=chatsServiceClient.d.ts.map