solana/web3.js/flow-typed/tweetnacl.js

14 lines
189 B
JavaScript
Raw Normal View History

2018-08-23 10:07:30 -07:00
declare module "tweetnacl" {
declare type KeyPair = {
publicKey: Buffer;
secretKey: Buffer;
};
declare module.exports: {
sign: {
keyPair(): KeyPair;
};
};
}