Utility class for querying {@see IDerivativeManifest}.

Constructors

Properties

Methods

Constructors

Properties

Methods

  • Finds manifest derivatives with matching 'guid', 'type', or 'role' properties.

    Parameters

    • query: {
          guid?: string;
          role?: string;
          type?: string;
      }

      Dictionary of the requested properties and values.

      • Optional guid?: string
      • Optional role?: string
      • Optional type?: string

    Returns DerivativeChild[]

    Matching derivatives.

  • Traverses all derivatives, executing the input callback for each one.

    Parameters

    • callback: ((child) => boolean)

      Function to be called for each derivative, returning a bool indicating whether the traversal should recurse deeper in the manifest hierarchy.

        • (child): boolean
        • Parameters

          • child: DerivativeChild

          Returns boolean

    Returns void

Generated using TypeDoc