Interface iSatisfyMethod

interface iSatisfyMethod {
    conditions: (string | iSatisfyMethod)[];
    options?: {
        minNumSatisfied?: number;
    };
    type: "AND" | "OR" | "NOT";
}

Implemented by

Properties

conditions: (string | iSatisfyMethod)[]

Conditions can either be the instance ID string of the plugin to check success for or another satisfyMethod object.

options?: {
    minNumSatisfied?: number;
}

Type declaration

  • OptionalminNumSatisfied?: number

    Only applicable to OR logic. Implements M of N logic.

type: "AND" | "OR" | "NOT"