UNPKG

@jameshclrk/rxdb-hooks

Version:

React hooks for integrating with RxDB

9 lines (8 loc) 310 B
/// <reference types="react" /> import { RxDatabaseBaseExtended } from './plugins'; export interface RxContext { dbs: Record<string, RxDatabaseBaseExtended>; addDb: (name: string, db: RxDatabaseBaseExtended) => void; } declare const Context: import("react").Context<RxContext>; export default Context;