Skip to content
Snippets Groups Projects

#11609 - backend pro Undo / Redo

Merged Jan Ulrych requested to merge #11609-backend-undo-redo into develop
9 files
+ 240
62
Compare changes
  • Side-by-side
  • Inline
Files
9
+ 7
0
import { Action } from './action.interface';
import { Result } from './result.interface';
export interface State {
actions: Action[];
finalStates: Result[];
}
Loading