/** * 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; }