Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | 6x 6x 6x 6x 6x 6x | import models from './models'; import collections from './collections'; import defaultValues from './default-values'; import timestamps from './timestamps'; import hooks from './hooks'; import replication from './replication'; export default function register(RxDB) { RxDB.plugin(models); RxDB.plugin(collections); RxDB.plugin(defaultValues); RxDB.plugin(timestamps); RxDB.plugin(hooks); RxDB.plugin(replication); } |