6 lines
102 B
TypeScript
Raw Normal View History

2020-04-19 18:49:07 +02:00
import { Database } from './Database';
export interface PatchAction {
apply(db: Database): void;
}