ts-graphviz
    Preparing search index...

    Interface PrintPlugin<T>Beta

    PrintPlugin is an interface for plugins used for printing an ASTNode.

    interface PrintPlugin<T extends ASTNode = ASTNode> {
        match(ast: ASTNode): boolean;
        print(context: PrintContext, ast: T): Generator<string>;
    }

    Type Parameters

    Index

    Methods

    Methods