roblox-ts
Version:
<div align="center"><img width=25% src="https://i.imgur.com/yCjHmng.png"></div> <h1 align="center"><a href="https://roblox-ts.github.io/">roblox-ts</a></h1> <div align="center">A TypeScript-to-Lua Compiler for Roblox</div> <br> <div align="center"> <a hr
7 lines (6 loc) • 545 B
TypeScript
import * as ts from "ts-morph";
import { CompilerState } from "../CompilerState";
export declare function checkPropertyCollision(node: ts.ClassDeclaration | ts.ClassExpression, prop: ts.ClassInstancePropertyTypes): void;
export declare function compileClassDeclaration(state: CompilerState, node: ts.ClassDeclaration): string;
export declare function compileClassExpression(state: CompilerState, node: ts.ClassExpression): string;
export declare function compileSuperExpression(state: CompilerState, node: ts.SuperExpression): "self" | "super";