ts-graphviz
    Preparing search index...

    Interface PrintContextBeta

    PrintContext interface provides an interface for printing an ASTNode with a set of options.

    interface PrintContext {
        directed: boolean;
        EOL: string;
        join(children: ASTNode[], separator: string): Iterable<string>;
        print(ast: ASTNode): Iterable<string>;
        printChildren(children: ASTNode[]): Iterable<string>;
    }
    Index

    Properties

    Methods

    Properties

    directed: boolean

    Indicates if the AST should be printed in a directed graph.

    EOL: string

    Methods