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
13 lines (12 loc) • 520 B
TypeScript
import { BaseFetch } from "@executors/base_fetch";
import { ICountQuery } from "@/common";
import { IDBUtil } from "@/worker/idbutil";
import { executeWhereUndefinedLogic } from "@executors/count/not_where";
export declare class Count extends BaseFetch {
query: ICountQuery;
resultCount: number;
executeWhereUndefinedLogic: typeof executeWhereUndefinedLogic;
constructor(query: ICountQuery, util: IDBUtil);
execute(beforeExecute: () => Promise<any>): Promise<number>;
private initTransaction_;
}