(comp: Composition, id: string, value: string)
| 59 | } |
| 60 | |
| 61 | export function applyTextContent(comp: Composition, id: string, value: string): void { |
| 62 | comp.setText(id, value); |
| 63 | } |
| 64 | |
| 65 | // Selection sugar — resolves getSelection() → explicit ops at call time. |
| 66 | // Equivalent to: ids = comp.getSelection(); comp.setStyle(ids, {...}) |