@pinecone-database/pinecone
Version:
This is the official Node.js SDK for [Pinecone](https://www.pinecone.io), written in TypeScript.
10 lines (9 loc) • 382 B
TypeScript
import { VectorOperationsProvider } from './vectorOperationsProvider';
import { RecordId } from './types';
/**
* The id of the record to delete from the index.
*
* @see {@link Index.deleteOne }
*/
export type DeleteOneOptions = RecordId;
export declare const deleteOne: (apiProvider: VectorOperationsProvider, namespace: string) => (options: DeleteOneOptions) => Promise<void>;