Skip to content

Commit

Permalink
Add ITransactionPaginate
Browse files Browse the repository at this point in the history
  • Loading branch information
NV4RE committed Dec 31, 2019
1 parent 4d9492b commit 867843a
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/store.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { ITransactionEvent } from './event';
import { ITransaction } from './transaction';

export enum StoreType {
ZooKeeper = 'ZOOKEEPER', // Greate for Definition
Expand All @@ -21,3 +22,8 @@ export interface ITransactionEventPaginate {
total: number;
events: ITransactionEvent[];
}

export interface ITransactionPaginate {
total: number;
events: ITransaction[];
}

0 comments on commit 867843a

Please sign in to comment.