UNPKG

@microsoft/msgraph-sdk-teamwork

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