UNPKG

@orama/orama

Version:

A complete search engine and RAG pipeline in your browser, server, or edge network with support for full-text, vector, and hybrid search in less than 2kb.

11 lines (10 loc) 279 B
export declare class BoolNode<V = unknown> { true: Set<V>; false: Set<V>; constructor(); insert(value: V, bool: boolean): void; delete(value: V, bool: boolean): void; getSize(): number; toJSON(): any; static fromJSON<V>(json: any): BoolNode<V>; }