client-app/src/app/carnet/travel-plan/travel-plan.component.ts

13 lines
348 B
TypeScript
Raw Normal View History

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 {
@Input() headerid: number = 0;
@Output() completed = new EventEmitter<boolean>();
2025-07-02 22:40:35 -03:00
}