import { IDBCreator } from './idb-types.js'; import { IDBInterceptor } from './idb-interceptor.js'; import '@firtoz/idb-collections'; /** * Creates an instrumented database creator that wraps operations with interception. * Use this for testing to verify what IndexedDB operations are performed. * * @example * const interceptor = { onOperation: (op) => console.log(op) }; * const dbCreator = createInstrumentedDbCreator(interceptor); * * */ declare function createInstrumentedDbCreator(interceptor: IDBInterceptor, baseCreator?: IDBCreator): IDBCreator; export { createInstrumentedDbCreator };