fix: remove logs

fix: move variable to constants
This commit is contained in:
Sérgio Salgado 2021-12-10 16:26:59 +00:00
parent cddb8e5bee
commit 864a83d5e0
3 changed files with 11 additions and 7 deletions

View file

@ -1,6 +1,14 @@
const CURRENCY_MAX = 9999999
const MIN_NUMBER_OF_CASSETTES = 2
const MAX_NUMBER_OF_CASSETTES = 4
const AUTOMATIC = 'automatic'
const MANUAL = 'manual'
export { CURRENCY_MAX, AUTOMATIC, MANUAL }
export {
CURRENCY_MAX,
MIN_NUMBER_OF_CASSETTES,
MAX_NUMBER_OF_CASSETTES,
AUTOMATIC,
MANUAL
}