@laserware/stasis
    Preparing search index...

    Function isAllOf

    • A higher-order function that returns a function that may be used to check whether an action matches all of the supplied type guards or action creators.

      Type Parameters

      • Matchers extends Matcher<any>[]

      Parameters

      • ...matchers: Matchers

        The type guards or action creators to match against.

      Returns (
          action: any,
      ) => action is UnionToIntersection<ActionFromMatcher<Matchers[number]>>