issue_tree
    Preparing search index...

    Interface RenderCommand

    Parsed render invocation.

    interface RenderCommand {
        cachePath: string;
        childOfGates: boolean;
        concentrate?: boolean;
        edgeMinlen?: number;
        edgeStyle: EdgeStyle;
        engine?: GraphvizEngine;
        format: OutputFormat;
        graphMargin?: number;
        graphPad?: number;
        issueShape?:
            | "box"
            | "polygon"
            | "ellipse"
            | "oval"
            | "circle"
            | "egg"
            | "triangle"
            | "diamond"
            | "trapezium"
            | "parallelogram"
            | "house"
            | "pentagon"
            | "hexagon"
            | "septagon"
            | "octagon"
            | "doublecircle"
            | "doubleoctagon"
            | "tripleoctagon"
            | "Mdiamond"
            | "Msquare"
            | "Mcircle"
            | "square"
            | "star"
            | "note"
            | "tab"
            | "folder"
            | "box3d"
            | "component"
            | "cylinder"
            | "rectangle";
        labels: string[];
        milestone: string
        | undefined;
        nodeMargin?: string;
        nodesep?: number;
        out: string | undefined;
        packmode: "off" | "node" | "clust" | "graph" | "array";
        prShape?:
            | "box"
            | "polygon"
            | "ellipse"
            | "oval"
            | "circle"
            | "egg"
            | "triangle"
            | "diamond"
            | "trapezium"
            | "parallelogram"
            | "house"
            | "pentagon"
            | "hexagon"
            | "septagon"
            | "octagon"
            | "doublecircle"
            | "doubleoctagon"
            | "tripleoctagon"
            | "Mdiamond"
            | "Msquare"
            | "Mcircle"
            | "square"
            | "star"
            | "note"
            | "tab"
            | "folder"
            | "box3d"
            | "component"
            | "cylinder"
            | "rectangle";
        rankdir: RankDir;
        ranksep?: number;
        rasterMax: number;
        repos: string[];
        scope: Scope;
        splines?: Splines;
        state: StateFilter;
        subcommand: "render";
    }
    Index

    Properties

    cachePath: string
    childOfGates: boolean
    concentrate?: boolean
    edgeMinlen?: number
    edgeStyle: EdgeStyle
    engine?: GraphvizEngine

    Graphviz layout engine; undefined uses the engine's default.

    format: OutputFormat
    graphMargin?: number
    graphPad?: number
    issueShape?:
        | "box"
        | "polygon"
        | "ellipse"
        | "oval"
        | "circle"
        | "egg"
        | "triangle"
        | "diamond"
        | "trapezium"
        | "parallelogram"
        | "house"
        | "pentagon"
        | "hexagon"
        | "septagon"
        | "octagon"
        | "doublecircle"
        | "doubleoctagon"
        | "tripleoctagon"
        | "Mdiamond"
        | "Msquare"
        | "Mcircle"
        | "square"
        | "star"
        | "note"
        | "tab"
        | "folder"
        | "box3d"
        | "component"
        | "cylinder"
        | "rectangle"
    labels: string[]
    milestone: string | undefined
    nodeMargin?: string
    nodesep?: number
    out: string | undefined
    packmode: "off" | "node" | "clust" | "graph" | "array"

    Disconnected-component 2D packing mode; defaults to 'node' (shelf packing).

    prShape?:
        | "box"
        | "polygon"
        | "ellipse"
        | "oval"
        | "circle"
        | "egg"
        | "triangle"
        | "diamond"
        | "trapezium"
        | "parallelogram"
        | "house"
        | "pentagon"
        | "hexagon"
        | "septagon"
        | "octagon"
        | "doublecircle"
        | "doubleoctagon"
        | "tripleoctagon"
        | "Mdiamond"
        | "Msquare"
        | "Mcircle"
        | "square"
        | "star"
        | "note"
        | "tab"
        | "folder"
        | "box3d"
        | "component"
        | "cylinder"
        | "rectangle"
    rankdir: RankDir
    ranksep?: number
    rasterMax: number

    Max pixel dimension on the longer axis for png/jpeg raster output.

    repos: string[]
    scope: Scope
    splines?: Splines

    Edge routing; undefined uses the DOT default ('curved').

    subcommand: "render"