@pinecone-database/pinecone
Version:
This is the official Node.js SDK for [Pinecone](https://www.pinecone.io), written in TypeScript.
32 lines (31 loc) • 928 B
TypeScript
/**
* 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.
*/
/**
*
* @export
* @interface ListItem
*/
export interface ListItem {
/**
*
* @type {string}
* @memberof ListItem
*/
id?: string;
}
/**
* Check if a given object implements the ListItem interface.
*/
export declare function instanceOfListItem(value: object): boolean;
export declare function ListItemFromJSON(json: any): ListItem;
export declare function ListItemFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListItem;
export declare function ListItemToJSON(value?: ListItem | null): any;