the tswhy logo: a question mark in a box

tswhy‽

A community effort to enrich TypeScript diagnostics.

TS1068

Unexpected token. A constructor, method, accessor, or property was expected.

This error indicates that your syntax is incorrect. You likely have an additional keyword which is unnecessary:

class A {
  function method() {}
}

Fix: Correct the syntax.

To fix the error, correct the syntax:

class A {
  method() {}
}