import { Database } from './Database';

export interface PatchAction {
  apply(db: Database): void;
}