7 lines
99 B
TypeScript
7 lines
99 B
TypeScript
|
export interface Tx {
|
||
|
_id?: string;
|
||
|
address: string;
|
||
|
session: string;
|
||
|
confirmations: number;
|
||
|
}
|