(root: HTMLElement | null)
| 84 | } |
| 85 | |
| 86 | export function enhanceStreamedContent(root: HTMLElement | null): void { |
| 87 | if (!root) { |
| 88 | return; |
| 89 | } |
| 90 | fixBrokenImages(root); |
| 91 | tagMeowButtons(root); |
| 92 | } |
| 93 | |
| 94 | export function attachStreamActions(root: HTMLElement | null): () => void { |
| 95 | if (!root) { |
no test coverage detected