(opts?: IHTMLElementOption, ...children: HTMLElement[])
| 32 | } |
| 33 | |
| 34 | export function $span(opts?: IHTMLElementOption, ...children: HTMLElement[]): HTMLElement { |
| 35 | return createElement('span', opts, ...children) |
| 36 | } |
| 37 | |
| 38 | /** |
| 39 | * Adds a disposable listener to a node in the DOM, returning the disposable. |
no test coverage detected