temp commit

This commit is contained in:
41666 2019-04-20 04:46:46 -05:00
parent e86f7ff68e
commit 6fb39d6c4d
No known key found for this signature in database
GPG key ID: BC51D07640DC10AF
22 changed files with 282 additions and 39 deletions

View file

@ -7,7 +7,7 @@
"dev": "yarn build --watch",
"postinstall": "test -d lib || npm run build"
},
"types": "src/",
"types": "src/index.js",
"main": "lib/index.js",
"files": ["lib"],
"dependencies": {

View file

@ -1,8 +1,10 @@
// @flow
import superagent from 'superagent'
import RPCError from './error'
import RPCError from './error.js'
import retry from 'async-retry'
export { RPCError }
export type RPCResponse = {
response?: mixed,
hash?: string,