adds ALL to transaction types
This commit is contained in:
parent
5bae193157
commit
31fccdbd10
2 changed files with 2 additions and 0 deletions
1
dist/bundle.js
vendored
1
dist/bundle.js
vendored
|
@ -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';
|
||||
|
|
|
@ -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';
|
||||
|
|
Loading…
Reference in a new issue