mirror of
https://github.com/RavenX8/companion-module-voicemod.git
synced 2026-04-04 05:18:53 -04:00
21 lines
346 B
JavaScript
21 lines
346 B
JavaScript
module.exports = function (self) {
|
|
self.setActionDefinitions({
|
|
sample_action: {
|
|
name: 'My First Action',
|
|
options: [
|
|
{
|
|
id: 'num',
|
|
type: 'number',
|
|
label: 'Test',
|
|
default: 5,
|
|
min: 0,
|
|
max: 100,
|
|
},
|
|
],
|
|
callback: async (event) => {
|
|
console.log('Hello world!', event.options.num)
|
|
},
|
|
},
|
|
})
|
|
}
|