UNPKG

@wxn0brp/db

Version:

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

8 lines (7 loc) 293 B
import { Search } from "../types/arg.js"; import { Context } from "../types/types.js"; /** * Removes entries from a file based on search criteria. */ declare function removeWorker(file: string, one: boolean, search: Search, context?: Context): Promise<boolean>; export default removeWorker;