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

8 lines (7 loc) 244 B
import { Base } from "@executors/base"; import { ISelectQuery } from "@/common"; import { IDBUtil } from "@/worker/idbutil"; export declare class Union extends Base { constructor(query: ISelectQuery[], util: IDBUtil); execute(): any; }