fix(core): update

This commit is contained in:
2021-04-15 00:59:56 +00:00
parent 9724813028
commit 53aada4638
7 changed files with 66 additions and 4 deletions

5
ts/interfaces/voucher.ts Normal file
View File

@@ -0,0 +1,5 @@
export interface IVoucher {
voucherDate: Date;
voucherId: string;
voucherStatus: 'uploaded' | 'transmitted';
}