mirror of
https://github.com/RavenX8/companion-module-voicemod.git
synced 2026-04-03 12:58:52 -04:00
8 lines
252 B
JavaScript
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' },
|
|
])
|
|
}
|