2025-07-07 19:09:47 -03:00
|
|
|
import { Component, EventEmitter, Input, Output } from '@angular/core';
|
2025-07-02 22:40:35 -03:00
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
|
selector: 'app-travel-plan',
|
|
|
|
|
imports: [],
|
|
|
|
|
templateUrl: './travel-plan.component.html',
|
|
|
|
|
styleUrl: './travel-plan.component.scss'
|
|
|
|
|
})
|
|
|
|
|
export class TravelPlanComponent {
|
2025-07-07 19:09:47 -03:00
|
|
|
@Input() headerid: number = 0;
|
|
|
|
|
@Output() completed = new EventEmitter<boolean>();
|
2025-07-02 22:40:35 -03:00
|
|
|
}
|