Get a variable value
The name of the variable to get
// Get a variable valueconst var1 = await getVar('namespace.var1');console.log(var1.value); // Access the valueconsole.log(var1.type); // Access the type Copy
// Get a variable valueconst var1 = await getVar('namespace.var1');console.log(var1.value); // Access the valueconsole.log(var1.type); // Access the type
Get a variable value