export type VariableType = 'v' | 'n' | 'd' | 'c' | 'rt'; /** * Variables are used to store the variable name and type. */ export type Variable = { k: string; i?: number; v?: VariableType; };