UNPKG

@microsoft/agents-hosting

Version:

Microsoft 365 Agents SDK for JavaScript

19 lines (17 loc) 334 B
/** * 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 }