@wxn0brp/db
Version:
A simple file-based database management system with support for CRUD operations, custom queries, and graph structures.
8 lines (7 loc) • 341 B
TypeScript
import { Context } from "../types/types.js";
import { Search, Updater } from "../types/arg.js";
/**
* Updates a file based on search criteria and an updater function or object.
*/
declare function updateWorker(file: string, one: boolean, search: Search, updater: Updater, context?: Context): Promise<boolean>;
export default updateWorker;