as2ts-cli
v1.0.4
Published
A node cli for ActionScript API port to Typescirpt!!
Downloads
7
Readme
AS2TS
Convert ActionScript 3
to TypeScript
using pure HTML5.
Try it:
http://www.nshen.net/as2ts/
or
$npm i as2ts-cli -g
$as2ts -h
Usage: as2ts [options]
--help, -h
Displays help information about this script
'as2ts -h' or 'as2ts --help'
--output, -o
Defines an output filename for script
'script --output=file.ts file.as' or 'script -o file.ts file.as'
Conversion:
Boolean
toboolean
uint
/int
/Number
tonumber
String
tostring
:*
to:any
package
tomodule
- comment out
import
statements ? public class
toexport class
public final class
toexport class
public interface
toexport interface
public function class_name(...):void
toconstructor(...)
internal
topublic
static (public|private|protected)
to(public|private|protected) static
(private|public|protected) var
to(private|public|protected)
(private|public|protected) const
to(private|public|protected)
(override) (private|public|protected) function
to(private|public|protected)
(private|public|protected) static var
to(private|public|protected) static
(private|public|protected) static const
to(private|public|protected) static
(private|public|protected) static function
to(private|public|protected) static
- local
const
tovar
A as B
to<B> A
:Array
to:any[]
:Vector.<type> =
totype[] =
:Vector.<type>;
totype[];
: Vector.<type> {
totype[] {
new Vector.<type>(7,true)
to[]
new <type>[1,2,3]
to[1,2,3]
Vector.<type>([1, 2, 3])
to[1, 2, 3]
trace
toconsole.log
Contact me:
nshen121[at]gmail.com