interface Condition {
    parameters: (
        | string
        | number
        | boolean
        | Condition)[];
    type: string;
}

Properties

Properties

parameters: (
    | string
    | number
    | boolean
    | Condition)[]
type: string