fix(core): update

This commit is contained in:
2021-04-15 01:06:42 +00:00
parent fd3932976d
commit d2014b8e96
9 changed files with 158 additions and 57 deletions

View File

@ -1,3 +1,2 @@
export * from './abstractclasses';
export * from './interfaces';

View File

@ -1,3 +1,3 @@
export * from './paymentaccount';
export * from './transaction';
export * from './voucher';
export * from './voucher';

View File

@ -1,4 +1,4 @@
import { IVoucher } from "./voucher";
import { IVoucher } from './voucher';
export interface IFinplusTransaction {
finplusTransactionId: string;
@ -18,4 +18,4 @@ export interface IFinplusTransaction {
dateIso?: string;
};
};
}
}