lbry-redux/dist/flow-typed/Transaction.js

29 lines
484 B
JavaScript
Raw Normal View History

// @flow
declare type Transaction = {
amount: number,
claim_id: string,
claim_name: string,
fee: number,
nout: number,
txid: string,
type: string,
date: Date,
};
2019-05-10 07:02:03 +02:00
declare type Support = {
address: string,
amount: string,
claim_id: string,
confirmations: number,
height: string,
is_change: string,
is_mine: string,
name: string,
normalized_name: string,
2019-05-10 07:02:03 +02:00
nout: string,
permanent_url: string,
timestamp: number,
txid: string,
type: string,
};