UNPKG

web-tinydb

Version:

easy to use multi-table indexeddb lib

10 lines (9 loc) 192 B
declare interface Window { TinyDB: any; mozIndexedDB: IDBFactory; webkitIndexedDB: IDBFactory; msIndexedDB: IDBFactory; } declare interface IDBFactory { databases<T>(): Promise<T> }