Interface VisibilityExpression
interface VisibilityExpression {
evaluate: () => "none" | "visible";
getGlobalStateRefs: () => Set<string>;
setValue: (visibility: VisibilitySpecification) => void;
}
evaluate: () => "none" | "visible";
getGlobalStateRefs: () => Set<string>;
setValue: (visibility: VisibilitySpecification) => void;
}
Index
Properties
Was this helpful?
Evaluates the visibility expression and returns either 'visible' or 'none'.