Interface Condition

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

Properties

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