@microsoft/msgraph-beta-sdk-users
Version:
Users fluent API for Microsoft Graph
31 lines • 1.5 kB
TypeScript
import { type UsersRequestBuilder } from './users/index.js';
import { type BackingStoreFactory, type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestAdapter } from '@microsoft/kiota-abstractions';
import { UserItemRequestBuilder } from './users/item/index.js';
/**
* Instantiates a new UsersServiceClient 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 createUsersServiceClient(requestAdapter: RequestAdapter, backingStore?: BackingStoreFactory | undefined): UsersServiceClient;
/**
* The main entry point of the SDK, exposes the configuration and the fluent API.
*/
export interface UsersServiceClient extends BaseRequestBuilder<UsersServiceClient> {
/**
* Provides operations to manage the collection of user entities.
*/
get users(): UsersRequestBuilder;
/**
* Provides operations to manage the currently signed-in user.
*/
get me(): UserItemRequestBuilder;
}
/**
* Metadata for all the navigation properties in the request builder.
*/
export declare const UsersServiceClientNavigationMetadata: Record<Exclude<keyof UsersServiceClient, KeysToExcludeForNavigationMetadata>, NavigationMetadata>;
/**
* Uri template for the request builder.
*/
export declare const UsersServiceClientUriTemplate = "{+baseurl}";
//# sourceMappingURL=usersServiceClient.d.ts.map