From e676a0986b570b19d0912778f85a7f2ef4425cf5 Mon Sep 17 00:00:00 2001 From: Peter Daniel Date: Wed, 28 Jun 2023 12:08:46 +0100 Subject: [PATCH] add new variables file --- variables.js | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 variables.js 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