(action: TableUndoAction)
| 64 | } |
| 65 | |
| 66 | function makeEntry(action: TableUndoAction) { |
| 67 | return { id: 'e1', action, timestamp: Date.now() } |
| 68 | } |
| 69 | |
| 70 | function makeCellsForClear(count: number) { |
| 71 | return Array.from({ length: count }, (_, i) => ({ |
no outgoing calls
no test coverage detected