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

12 lines (11 loc) 331 B
import { ITable, IAlterQuery, IColumn, TColumns } from "@/common"; export declare class TableMeta { name: string; columns: IColumn[]; primaryKey: string; autoIncColumnValue: {}; alter?: IAlterQuery; keypath: string | string[]; constructor(table: ITable); setColumn(tableColumns: TColumns): any[]; }