2020-06-28 16:55:44 +02:00

14 lines
388 B
TypeScript

/*
* Copyright (C) SapphireCode - All Rights Reserved
* This file is part of Snippeteer which is released under BSD-3-Clause.
* See file 'LICENSE' for full license details.
* Created by Timo Hocker <timo@scode.ovh>, May 2020
*/
import { Database } from './Database';
export interface PatchAction {
apply(db: Database): void;
assign_object(obj: Record<string, unknown>):void;
}