14 lines
338 B
TypeScript
14 lines
338 B
TypeScript
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<boolean>();
|
|
|
|
}
|