UNPKG

@wxn0brp/db

Version:

A simple file-based database management system with support for CRUD operations, custom queries, and graph structures.

9 lines (8 loc) 262 B
/** * Repairs a file path by replacing double slashes */ export declare function pathRepair(path: string): string; export interface LineReader extends AsyncIterable<string> { close: () => void; } export declare function createRL(file: string): LineReader;