The base struct for all conditions, stores a type identifier so we can tell the actual type of the condition and fetch the condition parameters correctly.

interface Condition {
    type: number;
}

Implemented by

Properties

Properties

type: number

See ConditionTypeValues for possible values.

Generated using TypeDoc