12 lines
178 B
JavaScript
12 lines
178 B
JavaScript
|
// @flow
|
||
|
declare type Transaction = {
|
||
|
amount: number,
|
||
|
claim_id: string,
|
||
|
claim_name: string,
|
||
|
fee: number,
|
||
|
nout: number,
|
||
|
txid: string,
|
||
|
type: string,
|
||
|
date: Date,
|
||
|
};
|