fix(finance): add IExpense

This commit is contained in:
2018-07-10 23:59:07 +02:00
parent 0044ab7b7e
commit 5b67ad1c1c
3 changed files with 10 additions and 2 deletions

View File

@ -1,17 +0,0 @@
import { IContact } from '../index';
export type TInvoiceStatus = 'draft' | 'invoice' | 'paid' | 'refunded';
export interface IInvoiceItem {
name: string;
unitType: string;
quantity: number;
vatPercentage: number;
}
export interface IInvoice {
billedBy: IContact;
billedTo: IContact;
status: TInvoiceStatus;
items: IInvoiceItem[];
}