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
21 lines (20 loc) • 734 B
TypeScript
import { Base } from "./base";
import { ISelectQuery } from "@/common";
import { WhereChecker } from "./where_checker";
import { executeWhereLogic } from "./select/where";
import { executeInLogic } from "./select/in";
import { executeRegexLogic } from "./select/regex";
export declare class BaseFetch extends Base {
query: ISelectQuery;
whereChecker: WhereChecker;
executeWhereLogic: typeof executeWhereLogic;
skipRecord: any;
limitRecord: any;
limitAtEnd: boolean;
skipAtEnd: boolean;
executeInLogic: typeof executeInLogic;
executeRegexLogic: typeof executeRegexLogic;
resultCount: number;
protected shouldAddValue: (value: any) => boolean;
protected goToWhereLogic(): Promise<any>;
}