diff --git a/variables.js b/variables.js new file mode 100644 index 0000000..00d9c41 --- /dev/null +++ b/variables.js @@ -0,0 +1,21 @@ +export function updateVariables() { + let variables = [] + + variables.push( + { + name: 'Current Timer Id', + variableId: 'timerId', + }, + { + name: 'Current Timer Duration', + variableId: 'timerDuration', + }, + { + name: 'Current Timer Description', + variableId: 'timerDescription', + } + ) + + this.setVariableDefinitions(variables) + +} \ No newline at end of file