fix: remove logs
fix: move variable to constants
This commit is contained in:
parent
cddb8e5bee
commit
864a83d5e0
3 changed files with 11 additions and 7 deletions
|
|
@ -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
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue