UNPKG

ts-budgie

Version:

Converts TypeScript code to Budgie.

9 lines (8 loc) 318 B
import * as ts from "typescript"; import { Transformation } from "../../output/transformation"; import { NodeVisitor } from "../visitor"; export declare class NewExpressionVisitor extends NodeVisitor { visit(node: ts.NewExpression): Transformation[]; private getNewTypes; private collectNewArgs; }