Files
companion-module-voicemod/variables.js
2023-10-30 20:36:51 -04:00

8 lines
252 B
JavaScript

module.exports = async function (self) {
self.setVariableDefinitions([
{ variableId: 'variable1', name: 'My first variable' },
{ variableId: 'variable2', name: 'My second variable' },
{ variableId: 'variable3', name: 'Another variable' },
])
}