interface IVectorDatabase {
    createIndex(options): any;
    deleteIndex(indexID, options?): any;
    editIndex(indexID, options?): any;
    listIndexes(options?): any;
}

Methods