UNPKG
fly-typescript
Version:
latest (1.1.1)
1.1.1
1.1.0
1.0.0
0.1.1
0.1.0
Typescript plugin for Fly
github.com/flyjs/fly-typescript
flyjs/fly-typescript
fly-typescript
/
test
/
fixtures
/
app.ts
9 lines
(7 loc)
•
156 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
export
default
class
App
{
constructor
(
public
str
:
string
) { }
greet
(
) {
/* This is a comment that should be removed */
return
this
.
str
; } }