import { Component, EventEmitter, Input, Output } from '@angular/core'; @Component({ selector: 'app-delivery', imports: [], templateUrl: './delivery.component.html', styleUrl: './delivery.component.scss' }) export class DeliveryComponent { @Input() headerid: number = 0; @Output() completed = new EventEmitter(); }