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": {
"src/**/*.{js}": [
"src/**/*.js": [
"prettier --write",
"eslint --fix",
"git add"

View file

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