adds ALL to transaction types

This commit is contained in:
Jessop Breth 2018-10-18 01:17:08 -04:00
parent 5bae193157
commit 31fccdbd10
2 changed files with 2 additions and 0 deletions

1
dist/bundle.js vendored
View file

@ -5014,6 +5014,7 @@ Object.defineProperty(exports, "__esModule", {
value: true
});
// eslint-disable-next-line import/prefer-default-export
var ALL = exports.ALL = 'all';
var SPEND = exports.SPEND = 'spend';
var RECEIVE = exports.RECEIVE = 'receive';
var PUBLISH = exports.PUBLISH = 'publish';

View file

@ -1,4 +1,5 @@
// eslint-disable-next-line import/prefer-default-export
export const ALL = 'all';
export const SPEND = 'spend';
export const RECEIVE = 'receive';
export const PUBLISH = 'publish';