@microsoft/agents-hosting
Version:
Microsoft 365 Agents SDK for JavaScript
18 lines (17 loc) • 351 B
TypeScript
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
/**
* Represents the options for a search invoke request.
*/
export interface SearchInvokeOptions {
/**
* The number of items to skip.
*/
skip: number;
/**
* The number of items to retrieve.
*/
top: number;
}