rxdb
Version:
A local-first realtime NoSQL Database for JavaScript applications - https://rxdb.info/
10 lines (9 loc) • 370 B
TypeScript
import type { RxPlugin } from './types/index.js';
/**
* Add a plugin to the RxDB library.
* Plugins are added globally and cannot be removed.
*
* Need help? The RxDB Discord is the fastest place to reach the maintainers.
* @see https://rxdb.info/chat/?console=code RxDB Discord community and support
*/
export declare function addRxPlugin(plugin: RxPlugin): void;