* Restore UI state for a specific element
(key: string, element: HTMLElement)
| 299 | * Restore UI state for a specific element |
| 300 | */ |
| 301 | restoreState(key: string, element: HTMLElement): void { |
| 302 | const state = this.stateMap.get(key); |
| 303 | if (state) { |
| 304 | const reconciler = new DOMReconciler(); |
| 305 | reconciler.restoreState(element, state); |
| 306 | } |
| 307 | } |
| 308 | |
| 309 | /** |
| 310 | * Clear saved state |
nothing calls this directly
no test coverage detected