@microsoft/agents-hosting-teams
Version:
Microsoft 365 Agents SDK for JavaScript
26 lines (22 loc) • 489 B
text/typescript
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
/**
* Represents a query with pagination and parameters.
* @template TParams - The type of the query parameters.
*/
export interface Query<TParams extends Record<string, any>> {
/**
* The number of items to retrieve.
*/
count: number;
/**
* The number of items to skip.
*/
skip: number;
/**
* The parameters for the query.
*/
parameters: TParams;
}