import { Optional } from '../common'; import MomentLib from 'moment'; export type PersistModuleOptions = { rootDirectory?: string; }; export type PersistedFile = { filename: string; transform?: (data: any) => any; }; export type PersistedFileData = { lastUpdate?: Optional; data?: Optional; }; export type GetPersistedFile = (options: PersistedFile) => Promise>; //# sourceMappingURL=persist.types.d.ts.map