UNPKG

preact-missing-hooks

Version:

A lightweight, extendable collection of missing React-like hooks for Preact — plus fresh, powerful new ones designed specifically for modern Preact apps.

17 lines (15 loc) 456 B
/** * IndexedDB hook system – public API. * @module indexedDB */ export type { IndexedDBConfig, TableSchema, OperationCallbacks, TransactionOptions, } from "./types"; export { requestToPromise } from "./requestToPromise"; export type { ITableController } from "./tableController"; export type { IDBController, TransactionContext } from "./dbController"; export { createDBController } from "./dbController"; export { openDB } from "./openDB";