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