TeaWeb/tools/dtsgen/test_non_modular/test_06.ts
2020-03-28 13:58:36 +01:00

6 lines
No EOL
153 B
TypeScript

/* get <name>() is not allowed within decl files. So declare the variable instead */
class A {
get x() { return "X"; }
set x(value: string) {}
}