lbry-desktop/flow-typed/CoinSwap.js
2021-04-13 14:02:25 -04:00

10 lines
155 B
JavaScript

declare type CoinSwapState = {
btcAddresses: Array<string>
};
declare type CoinSwapAction = {
type: string,
data: {
btcAddress: string,
},
};