feat(transactions): add pagination support for user transactions
Some checks failed
Some checks failed
This commit is contained in:
parent
157e774e86
commit
35184807c0
11 changed files with 47 additions and 24 deletions
6
frontend/src/app/model/TransactionData.ts
Normal file
6
frontend/src/app/model/TransactionData.ts
Normal file
|
@ -0,0 +1,6 @@
|
|||
import { Transaction } from './Transaction';
|
||||
|
||||
export interface TransactionData {
|
||||
transactions: Transaction[];
|
||||
hasMore: boolean;
|
||||
}
|
Reference in a new issue