Created
July 25, 2020 08:20
-
-
Save umairhm/56897f692c237ea5116bd6890d1e2237 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Component, ElementRef, Input } from '@angular/core'; | |
@Component({ | |
selector: 'element-coercion', | |
template: `...` | |
}) | |
export class ElementCoercionComponent { | |
@Input() elementOne: Element | ElementRef; | |
@Input() elementTwo: Element | ElementRef; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment