UNPKG

typescript-to-lua

Version:

A generic TypeScript to Lua transpiler. Write your code in TypeScript and publish Lua!

5 lines (4 loc) 312 B
import ts = require("typescript"); import * as lua from "../../LuaAST"; import { TransformationContext } from "../context"; export declare function transformSymbolConstructorCall(context: TransformationContext, node: ts.CallExpression, calledMethod: ts.PropertyAccessExpression): lua.CallExpression | undefined;