IVariable interface
đ Descriptionâ
Describes the interface that holds a variable.
đ Type declarationâ
interface IVariable { id: string;Readonly string: string;Readonly hasValue: boolean;Readonly value?: any;ReadonlyOptional reference?: string;ReadonlyOptional content: { value: string; type: "string" | "text" | "markdown"; separator: string; }[];Readonly slot?: Slot;ReadonlyOptional subscribe: (fnChange: (variable: IVariable) => void, context?: {}) => void;