Skip to content

ConditionalRenderingVariableSpec🔗

Definition🔗

export interface ConditionalRenderingVariableSpec {
    variable: string;
    operator: "equals" | "notEquals" | "matches" | "notMatches";
    value: string;
}