@pinecone-database/pinecone
Version:
This is the official Node.js SDK for [Pinecone](https://www.pinecone.io), written in TypeScript.
9 lines (8 loc) • 430 B
TypeScript
import type { PineconeConfiguration } from './vectors/types';
import type { IndexName } from '../control';
export declare const IndexHostSingleton: {
getHostUrl: (config: PineconeConfiguration, indexName: IndexName) => Promise<any>;
_reset: () => void;
_set: (config: PineconeConfiguration, indexName: IndexName, hostUrl: string) => void;
_delete: (config: PineconeConfiguration, indexName: IndexName) => void;
};