Skip to content

VariableAlias

typescript
interface VariableAlias {
  type: "VARIABLE_ALIAS";
  id: string;
}

structure used to describe when a particular node or variable is directly bound to a variable. The id of the bound variable can be used in conjunction with functions that accept a VariableId, such as pixso.variables.getVariableByIdAsync.