Как передать свойства параметра между файлами с помощью async execute(args)
внутри экспорта модуля. Например:
const obj = {
conditio: true
};
<...something>.execute(obj); // obj as the param
и в модуле.экспорт:
module.exports = {
name: 'something',
async execute(obj) {} // here when I call the obj, the VSC will show the 'condition' as a property
}