UNPKG

as2dts

Version:

A command line tool that converts ActionScript 3 classes and interfaces to TypeScript definitions (d.ts files)

11 lines (10 loc) 176 B
class StringBuffer { text: string = ''; append(text: string) { this.text += text; } toString() { return this.text } } export = StringBuffer