Files
tsclass/ts/business/invoice.ts
2017-11-09 01:46:45 +01:00

15 lines
276 B
TypeScript

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 {
status: TInvoiceStatus
}