* Append HTML string to all elements in the array
(htmlString: string)
| 1116 | * Append HTML string to all elements in the array |
| 1117 | */ |
| 1118 | appendHtml(htmlString: string): this { |
| 1119 | for (const item of this) { |
| 1120 | item.appendHtml(htmlString); |
| 1121 | } |
| 1122 | return this; |
| 1123 | } |
| 1124 | |
| 1125 | override indexOf(element: ElementWithUtils<T>): number { |
| 1126 | return this.native.indexOf(element.native); |
nothing calls this directly
no test coverage detected