UNPKG

@pinecone-database/pinecone

Version:

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

6 lines (5 loc) 305 B
import { ManageIndexesApi } from '../pinecone-generated-ts-fetch/db_control'; import { IndexName } from './types'; /** The name of index to delete */ export type DeleteIndexOptions = IndexName; export declare const deleteIndex: (api: ManageIndexesApi) => (indexName: DeleteIndexOptions) => Promise<void>;