core icon indicating copy to clipboard operation
core copied to clipboard

Translate properties to TypeScript accessors

Open Jand42 opened this issue 8 years ago • 0 comments

Currently this.X with get() = x translates to get_X() { return this.x }.

Use TS accessor syntax instead for non-indexed .NET properties: get X() { return this.X}, similarly for setters.

Jand42 avatar Oct 13 '17 20:10 Jand42