On this page

Interface VisibilityExpression

interface VisibilityExpression {
    evaluate: () => "none" | "visible";
    getGlobalStateRefs: () => Set<string>;
    setValue: (visibility: VisibilitySpecification) => void;
}
Index

Properties

evaluate: () => "none" | "visible"

Evaluates the visibility expression and returns either 'visible' or 'none'.

getGlobalStateRefs: () => Set<string>

Returns the set of global state properties referenced by the expression.

setValue: (visibility: VisibilitySpecification) => void

Updates the visibility specification.

Was this helpful?
SDK JS
Reference
VisibilityExpression