rxdb
Version:
A local-first realtime NoSQL Database for JavaScript applications - https://rxdb.info/
24 lines (19 loc) • 777 B
text/typescript
/**
* This plugins contains thing that are needed for testing
* in RxDB related context. Mostly used in the unit tests and
* also in the tests for the premium and the server repository.
*/
export * from './config.ts';
export * from './humans-collection.ts';
export * from './port-manager.ts';
export * from './revisions.ts';
export * from './test-util.ts';
export * from './schema-objects.ts';
export * from './schemas.ts';
export * from './replication.ts';
import * as humansCollectionConst from './humans-collection.ts';
export const humansCollection = humansCollectionConst;
import * as schemasConst from './schemas.ts';
export const schemas = schemasConst;
import * as schemaObjectsConst from './schema-objects.ts';
export const schemaObjects = schemaObjectsConst;