Created
June 27, 2016 05:52
-
-
Save tkssharma/2419b2c8dfe8578abf03939b02b0a11a to your computer and use it in GitHub Desktop.
This file contains hidden or 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
class OrderComponent { | |
@Input() stockSymbol: string; | |
@Input() quantity: number; | |
} | |
class PriceQuoterComponent { | |
@Output() lastPrice: EventEmitter<IPriceQuote> = new EventEmitter(); | |
... | |
this.lastPrice.emit(priceQuote) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment