TS1434
Unexpected keyword or identifier.
Broken Code ❌
class MyClass {
static static ID: number = 1337;
}Fixed Code ✔️
You have to remove the duplicate static keyword:
class MyClass {
static ID: number = 1337;
}Unexpected keyword or identifier.
class MyClass {
static static ID: number = 1337;
}You have to remove the duplicate static keyword:
class MyClass {
static ID: number = 1337;
}