@azure/search-documents
Version:
Azure client library to use AI Search for node.js and browser.
17 lines • 817 B
TypeScript
import { SearchIndexResponse } from "./azure/search/documents/indexes/models.js";
/**
* This file contains only generated model types and their (de)serializers.
* Disable the following rules for internal models with '_' prefix and deserializers which require 'any' for raw JSON input.
*/
/** Response from a List Indexes request. If successful, it includes the full definitions of all indexes. */
export interface _ListIndexesSelectedResult {
/** The indexes in the Search service. */
readonly value: SearchIndexResponse[];
}
export declare function _listIndexesSelectedResultDeserializer(item: any): _ListIndexesSelectedResult;
/** The available API versions. */
export declare enum KnownVersions {
/** The 2026-04-01 API version. */
V20260401 = "2026-04-01"
}
//# sourceMappingURL=models.d.ts.map