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.15 kB
/** * Pinecone Control 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 { CollectionModel } from './CollectionModel'; /** * The list of collections that exist in the project. * @export * @interface CollectionList */ export interface CollectionList { /** * * @type {Array<CollectionModel>} * @memberof CollectionList */ collections?: Array<CollectionModel>; } /** * Check if a given object implements the CollectionList interface. */ export declare function instanceOfCollectionList(value: object): boolean; export declare function CollectionListFromJSON(json: any): CollectionList; export declare function CollectionListFromJSONTyped(json: any, ignoreDiscriminator: boolean): CollectionList; export declare function CollectionListToJSON(value?: CollectionList | null): any;