export default abstract class Action {
    abstract do(): any;
    abstract undo(): any;
    redo(): any;
    asyncDo(): Promise<any>;
}
