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

17 lines (16 loc) 484 B
import { ICaseOption } from "@/common"; export declare class ThenEvaluator { private columnName_; private value; private caseQuery_; private caseColumnQuery_; private length_; setCaseAndValue(caseQuery: any, value: any): void; setCaseAndColumn(caseQuery: { [columnName: string]: [ICaseOption]; }, columnName: string): this; setColumn(columnName: string): this; setValue(value: any): this; evaluate(): any; private checkCase_; }