UNPKG

jsstore

Version:

Harness the power of JsStore to streamline database operations in your web applications. With its SQL-like API, JsStore simplifies IndexedDB interactions, enabling developers to easily query, filter, and manipulate data with familiar syntax and efficiency

12 lines (11 loc) 492 B
import { IUpdateQuery } from "@/common"; import { IDBUtil } from "@/worker/idbutil"; import { BaseFetch } from "@executors/base_fetch"; import { executeWhereUndefinedLogic } from "./not_where"; export declare class Update extends BaseFetch { executeWhereUndefinedLogic: typeof executeWhereUndefinedLogic; constructor(query: IUpdateQuery, util: IDBUtil); execute(beforeExecute: () => Promise<any>): Promise<number>; private executeComplexLogic_; private initTransaction; }