TS1131

Property or signature expected.

Broken Code ❌

interface User {
  name: string;
  ;
}

Fixed Code ✔️

interface User {
  name: string;
}

This error occurs when there's a stray semicolon or invalid syntax within an interface or type declaration.