bitbadgesjs-sdk - v0.22.7
    Preparing search index...

    Interface iSatisfyMethod

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

    Implemented by

    Index

    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"