TS1434

error TS1434: Unexpected keyword or identifier.

Broken Code ❌

1
2
3
class MyClass {
static static ID: number = 1337;
}

Fixed Code ✔️

You have to remove the duplicate static keyword:

1
2
3
class MyClass {
static ID: number = 1337;
}