TeaWeb/tools/dtsgen/test_non_modular/test_06.ts

6 lines
153 B
TypeScript
Raw Normal View History

2019-08-21 13:34:03 +02:00
/* get <name>() is not allowed within decl files. So declare the variable instead */
class A {
get x() { return "X"; }
set x(value: string) {}
}