Need to access to property children element.
Parent:
<div>
<shipment-detail #myCarousel ></shipment-detail>
</div>
@Component({
selector: "testProject",
templateUrl: "app/partials/Main.html")
class AppComponent {
getChildrenProperty() {
// I want to get access to "shipment"
}
}
Children:
@Component({
selector: "shipment-detail",
})
export class ShipmentDetail {
shipment: Shipment;
}