fix(update IExpense): update

This commit is contained in:
Philipp Kunz 2018-08-07 21:54:06 +02:00
parent 0dd921675e
commit 3912ed3167

View File

@ -2,6 +2,9 @@ import { IInvoice } from './invoice';
import { IContact } from '../business/contact'; import { IContact } from '../business/contact';
export interface IExpenseItem { export interface IExpenseItem {
description: string,
asset?: boolean,
accountingType?: string,
amount: number; amount: number;
taxPercentage: number; taxPercentage: number;
} }