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) • 415 B
TypeScript
export * from "./values_checker";
import { IInsertQuery } from "@/common";
import { Base } from "@worker/executors/base";
import { IDBUtil } from "@/worker/idbutil";
export declare class Insert extends Base {
query: IInsertQuery;
private valuesAffected_;
constructor(query: IInsertQuery, util: IDBUtil);
execute(beforeInsert: () => Promise<any>): Promise<number | any[]>;
private insertData_;
}