rxdb
Version:
A local-first realtime NoSQL Database for JavaScript applications - https://rxdb.info/
13 lines (12 loc) • 577 B
TypeScript
import type { RxCollection, RxDatabase } from '../../index.d.ts';
import type { RxWebMCPPlugin, WebMCPOptions, WebMCPLogEvent } from '../../types/plugins/webmcp.d.ts';
import { Subject } from 'rxjs';
export declare function registerWebMCPDatabase(this: RxDatabase, options?: WebMCPOptions): {
error$: Subject<Error>;
log$: Subject<WebMCPLogEvent>;
};
export declare function registerWebMCPCollection(this: RxCollection, options?: WebMCPOptions): {
error$: Subject<Error>;
log$: Subject<WebMCPLogEvent>;
};
export declare const RxDBWebMCPPlugin: RxWebMCPPlugin;