export interface DatabaseDriverPersister { persist(entity: T): void; remove(entity: T): void; flush(): Promise; }