(tNode: TNode, lView: LView)
| 31 | * @returns The ElementRef instance to use |
| 32 | */ |
| 33 | export function createElementRef(tNode: TNode, lView: LView): ElementRef { |
| 34 | return new ElementRef(getNativeByTNode(tNode, lView) as RElement); |
| 35 | } |
| 36 | |
| 37 | /** |
| 38 | * A wrapper around a native element inside of a View. |
no test coverage detected
searching dependent graphs…