TypeScript/tests/baselines/reference/es6modulekindWithES2015Target.types
2016-09-01 14:25:44 -07:00

18 lines
220 B
Plaintext

=== tests/cases/compiler/es6modulekindWithES2015Target.ts ===
export default class A
>A : A
{
constructor ()
{
}
public B()
>B : () => number
{
return 42;
>42 : 42
}
}