@servicenow/sdk - v4.7.0
    Preparing search index...
    • Iterates over the elements in the provided array.

      Type Parameters

      • TStructure

      Parameters

      • structures: readonly Structures[]

        Array of structures to iterate over.

      • callback: (child: Structures) => void | TStructure

        Callback to do on each element in the array. Returning a truthy value will return that value in the main function call.

      Returns TStructure | undefined

    • Iterates over the children of the provided array.

      Type Parameters

      • TStructure

      Parameters

      • structure: Structures

        Structure to iterate over.

      • callback: (child: Structures) => void | TStructure

        Callback to do on each child of the provided structure. Returning a truthy value will return that value in the main function call.

      Returns TStructure | undefined

      If the children do not have a kind property, it will be automatically added.