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
16 lines (15 loc) • 526 B
TypeScript
import { BaseFetch } from "../base_fetch";
import { IRemoveQuery } from "@/common";
import { IDBUtil } from "@/worker/idbutil";
export declare class Remove extends BaseFetch {
isOr: any;
executeWhereUndefinedLogic: any;
constructor(query: IRemoveQuery, util: IDBUtil);
execute(beforeExecute: () => Promise<any>): Promise<number>;
private processWhereArrayQry;
private processWhere_;
private initTransaction_;
private onWhereEvaluated;
private orQuerySuccess_;
private processOrLogic;
}