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

interface PrintPlugin<T> {
    match(ast): boolean;
    print(context, ast): Generator<string, any, unknown>;
}

Type Parameters

Methods

Methods

Generated using TypeDoc