UNPKG

@pinecone-database/pinecone

Version:

This is the official Node.js SDK for [Pinecone](https://www.pinecone.io), written in TypeScript.

33 lines (32 loc) 1.22 kB
/** * Pinecone Data Plane API * Pinecone is a vector database that makes it easy to search and retrieve billions of high-dimensional vectors. * * The version of the OpenAPI document: 2025-04 * Contact: support@pinecone.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { Hit } from './Hit'; /** * * @export * @interface SearchRecordsResponseResult */ export interface SearchRecordsResponseResult { /** * The hits for the search document request. * @type {Array<Hit>} * @memberof SearchRecordsResponseResult */ hits: Array<Hit>; } /** * Check if a given object implements the SearchRecordsResponseResult interface. */ export declare function instanceOfSearchRecordsResponseResult(value: object): boolean; export declare function SearchRecordsResponseResultFromJSON(json: any): SearchRecordsResponseResult; export declare function SearchRecordsResponseResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): SearchRecordsResponseResult; export declare function SearchRecordsResponseResultToJSON(value?: SearchRecordsResponseResult | null): any;