portablefinance/ts/interfaces/voucher.ts

6 lines
117 B
TypeScript
Raw Normal View History

2021-04-15 00:59:56 +00:00
export interface IVoucher {
voucherDate: Date;
voucherId: string;
voucherStatus: 'uploaded' | 'transmitted';
}