| 504 | export const INPUT_UNDO_GROUP_WINDOW_MS = 300; |
| 505 | |
| 506 | export class InputUndoStack { |
| 507 | private readonly undo: InputUndoEntry[] = []; |
| 508 | private readonly redo: InputUndoEntry[] = []; |
| 509 |
nothing calls this directly
no outgoing calls
no test coverage detected