UNPKG

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>

9 lines (8 loc) 236 B
import { IndexedDBKeysDataType } from "../enums/IndexedDBKeysDataType"; export interface IndexedDBStoreSchema { [key: string]: { primary?: boolean; unique?: boolean; datatype: IndexedDBKeysDataType; }; }