UNPKG

chonkie

Version:

🦛 CHONK your texts in TS with Chonkie!✨The no-nonsense lightweight and efficient chunking library.

7 lines (6 loc) • 254 B
/** Base class for Chonkie's Handshakes. */ import { Chunk } from "../types/base"; export declare abstract class BaseHandshake { abstract write(chunks: Chunk[]): Promise<void>; abstract query(query: string, nResults: number): Promise<Chunk[]>; }