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

14 lines (13 loc) 329 B
export declare class MemoryObjectStore { data: any[]; constructor(data: any[]); get indexNames(): { contains(columnName: string): boolean; }; index(column: string): { openCursor: (keyRange?: IDBKeyRange) => { onsuccess: Function; onerror: Function; }; }; }