portablefinance/ts/interfaces/voucher.ts
2021-04-15 00:59:56 +00:00

6 lines
117 B
TypeScript

export interface IVoucher {
voucherDate: Date;
voucherId: string;
voucherStatus: 'uploaded' | 'transmitted';
}