Auto-Photoshop-StableDiffus.../enum.js

11 lines
240 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
}
module.exports = {
clickTypeEnum,
}