19 lines
419 B
JavaScript
19 lines
419 B
JavaScript
const clickTypeEnum = {
|
|
Click: 'click',
|
|
ShiftClick: 'shift_click',
|
|
AltClick: 'alt_click',
|
|
SecondClick: 'second_click', //when we click a thumbnail that is active/ has orange border
|
|
}
|
|
|
|
const AutomaticStatusEnum = {
|
|
NoApi: 'no_api',
|
|
Offline: 'offline',
|
|
RunningNoApi: 'running_no_api',
|
|
RunningWithApi: 'running_with_api',
|
|
}
|
|
|
|
module.exports = {
|
|
clickTypeEnum,
|
|
AutomaticStatusEnum,
|
|
}
|