ts-graphviz
    Preparing search index...

    Interface PrintOptionsBeta

    This interface provides options for converting an abstract syntax tree (AST) to a DOT representation.

    interface PrintOptions {
        endOfLine?: EndOfLine;
        indentSize?: number;
        indentStyle?: IndentStyle;
    }
    Index

    Properties

    endOfLine?: EndOfLine

    The type of line ending to use when printing the AST.

    lf
    
    indentSize?: number

    The size of the indentation to use when printing the AST.

    2
    
    indentStyle?: IndentStyle

    The style of indentation to use when printing the AST.

    "space"