(id: HfId, value: string)
| 125 | } |
| 126 | |
| 127 | setText(id: HfId, value: string): void { |
| 128 | this.dispatch({ type: "setText", target: id, value }); |
| 129 | } |
| 130 | |
| 131 | setAttribute(id: HfId, name: string, value: string | null): void { |
| 132 | this.dispatch({ type: "setAttribute", target: id, name, value }); |