Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 343 Bytes

File metadata and controls

12 lines (9 loc) · 343 Bytes

Support auto accessors syntax (#13919 by @sosukesuzuki)

Support for Auto Accessors Syntax landed in TypeScript 4.9.

(Doesn't work well with babel-ts parser)

class Foo {
  accessor foo: number = 3;
}