6 lines
153 B
TypeScript
6 lines
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) {}
|
||
|
}
|