(id: HfId, styles: Record<string, string | null>)
| 121 | // ── Typed methods (F10 layer 1) ───────────────────────────────────────────── |
| 122 | |
| 123 | setStyle(id: HfId, styles: Record<string, string | null>): void { |
| 124 | this.dispatch({ type: "setStyle", target: id, styles }); |
| 125 | } |
| 126 | |
| 127 | setText(id: HfId, value: string): void { |
| 128 | this.dispatch({ type: "setText", target: id, value }); |