(name: string, value: string)
| 10 | // Cloudflare Workers types (minimal, avoids conflicts with DOM types) |
| 11 | interface CfElement { |
| 12 | setAttribute(name: string, value: string): void; |
| 13 | setInnerContent(content: string): void; |
| 14 | append(content: string, options?: { html: boolean }): void; |
| 15 | } |
no outgoing calls
no test coverage detected