CML
    Preparing search index...

    Type Alias TraverseIsoBoxesConfig

    Configuration options for traversing ISO boxes.

    type TraverseIsoBoxesConfig = {
        depthFirst?: boolean;
        maxDepth?: number;
    }
    Index

    Properties

    depthFirst?: boolean

    Whether to traverse the boxes depth-first or breadth-first.

    true

    maxDepth?: number

    The maximum depth to traverse. A value of 0 will only traverse the root boxes.

    Infinity