ngx-indexed-database
Version:
<div align="center"> <img src="https://w3c.github.io/IndexedDB/logo-db.svg" width="120"/> </div> <h1 align="center">ngx-indexed-database</h1>
7 lines (6 loc) • 383 B
TypeScript
import { IndexedDBStoreSchema } from "../models/IndexedDBStoreSchema";
export declare class HelperUtils {
static getDatabaseVersion(dbName: string): Promise<number>;
static getIndexedDBStoreSchemaPrimaryKeys(storeSchema: IndexedDBStoreSchema): string[];
static promisifyIndexedDBRequest(request: IDBRequest, resolveMethod: string, rejectMethod?: string): Promise<any>;
}