15 lines
276 B
TypeScript
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
|
|
}
|