Front-Complete/src/app/main/invoice/generateInvoice/components/dataInvoice/DataInvoiceInterface.ts

15 lines
221 B
TypeScript

export interface Headers {
id: number;
name: string;
style?: string | number;
}
export interface ItemInvoice {
cod: string;
description: string;
amount: number;
unitValue: number;
iva: boolean;
total: number;
}