import type { RxPlugin } from 'nxdb-old/src/types'; import { startCleanupForRxCollection } from 'nxdb-old/src/plugins/cleanup/cleanup'; export const NxDBCleanupPlugin: RxPlugin = { name: 'cleanup', nxdb: true, prototypes: {}, hooks: { createRxCollection: { after: (i) => { startCleanupForRxCollection(i.collection); } } } }; export * from 'nxdb-old/src/plugins/cleanup/cleanup';