(overlay: any, options: Record<string, unknown>)
| 149 | } |
| 150 | |
| 151 | function applyOverlayOptions(overlay: any, options: Record<string, unknown>) { |
| 152 | if (overlay?.setOptions) { |
| 153 | overlay.setOptions(options); |
| 154 | } |
| 155 | } |
| 156 | |
| 157 | function addChangedCells(previous: Set<string>, next: Set<string>, changed: Set<string>) { |
| 158 | for (const cellId of previous) { |