fix: add Token flowtype declarations

This commit is contained in:
Michael Vines
2018-10-16 13:51:04 -07:00
parent 300da5b626
commit 96242110bf
2 changed files with 60 additions and 5 deletions

View File

@ -52,7 +52,7 @@ export class TokenAmount extends BN {
/**
* Information about a token
*/
type TokenInfo = {
type TokenInfo = {|
/**
* Total supply of tokens
*/
@ -72,7 +72,7 @@ type TokenInfo = {
* Symbol for this token
*/
symbol: string,
};
|};
/**
* @private
@ -87,7 +87,7 @@ const TokenInfoLayout = BufferLayout.struct([
/**
* Information about a token account
*/
type TokenAccountInfo = {
type TokenAccountInfo = {|
/**
* The kind of token this account holds
*/
@ -111,7 +111,7 @@ type TokenAccountInfo = {
* an allowance of tokens that may be transferred from the source account
*/
source: null | PublicKey,
};
|};
/**
* @private