@hmiproject/helio-sdk
    Preparing search index...

    Type Alias PropCondition

    PropCondition:
        | {
            prop: string;
            type: "equals";
            value: string
            | number
            | boolean
            | undefined;
        }
        | {
            prop: string;
            type: "notEquals";
            value: string
            | number
            | boolean
            | undefined;
        }
        | { prop: string; type: "oneOf"; values: ReadonlyArray<string | number> }
        | {
            prop: string;
            type: "notOneOf";
            values: ReadonlyArray<string | number>;
        }

    Condition on a sibling prop of the same schema level, used by visibleIf and enabledIf. The condition matches while the sibling prop's value equals equals (or is contained in oneOf); notEquals and notOneOf are the negated counterparts.