// @ts-nocheck /** * this is the main entry-point * for when the you call "import from 'rxdb'". */ export * from './plugin.js'; export * from './rx-database.js'; export * from './rx-error.js'; export * from './rx-database-internal-store.js'; export * from './overwritable.js'; export * from './rx-collection.js'; export * from './rx-collection-helper.js'; export * from './rx-document.js'; export * from './rx-change-event.js'; export * from './rx-document-prototype-merge.js'; export * from './rx-query.js'; export * from './rx-query-single-result.js'; export * from './rx-query-helper.js'; export * from './rx-schema.js'; export * from './rx-schema-helper.js'; export * from './rx-storage-helper.js'; export * from './replication-protocol/index.js'; export * from './rx-storage-multiinstance.js'; export * from './custom-index.js'; export * from './query-planner.js'; export * from './plugin-helpers.js'; export * from './plugins/utils/index.js'; export * from './hooks.js'; export * from './query-cache.js'; export type * from './types/index.js';