UNPKG

rxdb

Version:

A local-first realtime NoSQL Database for JavaScript applications - https://rxdb.info/

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