-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathindex.ts
30 lines (29 loc) · 1.01 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/**
* 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';