import { EntityPersistor, EntityPersistorConfig } from "./EntityPersistor"; import { Migrator } from "./migrator"; export interface PersistencePlugin { persistor: EntityPersistor; migrator?: Migrator; } export declare type PersistencePluginFactory = (config: TConfig & EntityPersistorConfig) => PersistencePlugin; export declare type PersistencePluginConfig = [string, TConfig]; //# sourceMappingURL=PersistencePlugin.d.ts.map