fix: add flow definition for load()

This commit is contained in:
Michael Vines 2018-10-13 17:21:00 -07:00
parent e739ac1424
commit c931127748
1 changed files with 1 additions and 0 deletions

View File

@ -65,6 +65,7 @@ declare module '@solana/web3.js' {
): Transaction;
static move(from: PublicKey, to: PublicKey, amount: number): Transaction;
static assign(from: PublicKey, programId: PublicKey): Transaction;
static load(from: PublicKey, programId: PublicKey, name: string): Transaction;
}
// === src/transaction.js ===