client-app/src/app/carnet/shipping/shipping.component.ts

13 lines
337 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-shipping',
imports: [],
templateUrl: './shipping.component.html',
styleUrl: './shipping.component.scss'
})
export class ShippingComponent {
@Input() headerid: number = 0;
@Output() completed = new EventEmitter<boolean>();
2025-07-02 22:40:35 -03:00
}