interface BaseConfiguration {
    condition?: {
        comparator: "EQ";
        option: string;
        type: "SHOW" | "HIDE";
        value: string | boolean;
    };
}

Properties

Properties

condition?: {
    comparator: "EQ";
    option: string;
    type: "SHOW" | "HIDE";
    value: string | boolean;
}