UNPKG

history-actions

Version:
7 lines (6 loc) 137 B
export default abstract class Action { abstract do(): any; abstract undo(): any; redo(): any; asyncDo(): Promise<any>; }