@pinecone-database/pinecone
Version:
This is the official Node.js SDK for [Pinecone](https://www.pinecone.io), written in TypeScript.
8 lines (7 loc) • 325 B
TypeScript
import { ManageIndexesApi } from '../pinecone-generated-ts-fetch/db_control';
import type { BackupId } from './types';
/**
* The string ID of the backup to delete.
*/
export type DeleteBackupOptions = BackupId;
export declare const deleteBackup: (api: ManageIndexesApi) => (backupId: DeleteBackupOptions) => Promise<void>;