added Lbryapi export for getExchangeRates method

This commit is contained in:
Akinwale Ariwodola 2018-01-19 12:30:02 +01:00
parent cf069259a8
commit ca06c27d32
2 changed files with 3 additions and 2 deletions

View file

@ -1,6 +1,6 @@
{ {
"linters": { "linters": {
"src/**/*.{js}": [ "src/**/*.js": [
"prettier --write", "prettier --write",
"eslint --fix", "eslint --fix",
"git add" "git add"

View file

@ -1,8 +1,9 @@
// common // common
import Lbry from 'lbry'; import Lbry from 'lbry';
import Lbryapi from 'lbryapi';
import Lbryuri from 'lbryuri'; import Lbryuri from 'lbryuri';
export { Lbry, Lbryuri }; export { Lbry, Lbryapi, Lbryuri };
// actions // actions
export { doOpenModal, doCloseModal, doShowSnackBar } from 'redux/actions/app'; export { doOpenModal, doCloseModal, doShowSnackBar } from 'redux/actions/app';