rxdb
Version:
A local-first realtime NoSQL Database for JavaScript applications - https://rxdb.info/
31 lines (29 loc) • 1.04 kB
text/typescript
/**
* this is the main entry-point
* for when the you call "import from 'rxdb'".
*/
export * from './plugin.ts';
export * from './rx-database.ts';
export * from './rx-error.ts';
export * from './rx-database-internal-store.ts';
export * from './overwritable.ts';
export * from './rx-collection.ts';
export * from './rx-collection-helper.ts';
export * from './rx-document.ts';
export * from './rx-change-event.ts';
export * from './rx-document-prototype-merge.ts';
export * from './rx-query.ts';
export * from './rx-query-single-result.ts';
export * from './rx-query-helper.ts';
export * from './rx-schema.ts';
export * from './rx-schema-helper.ts';
export * from './rx-storage-helper.ts';
export * from './replication-protocol/index.ts';
export * from './rx-storage-multiinstance.ts';
export * from './custom-index.ts';
export * from './query-planner.ts';
export * from './plugin-helpers.ts';
export * from './plugins/utils/index.ts';
export * from './hooks.ts';
export * from './query-cache.ts';
export type * from './types/index.ts';