(strings: TemplateStringsArray, ...values: Array<unknown>)
| 13 | import type { Renderer } from "../UI5Element.js"; |
| 14 | |
| 15 | const effectiveHtml = (strings: TemplateStringsArray, ...values: Array<unknown>) => { |
| 16 | const litStatic = getFeature<typeof LitStatic>("LitStatic"); |
| 17 | const fn = litStatic ? litStatic.html : html; |
| 18 | return fn(strings, ...values); |
| 19 | }; |
| 20 | |
| 21 | const effectiveSvg = (strings: TemplateStringsArray, ...values: Array<unknown>) => { |
| 22 | const litStatic = getFeature<typeof LitStatic>("LitStatic"); |
nothing calls this directly
no test coverage detected
searching dependent graphs…