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.
Property or signature expected.
interface User {
name: string;
;
}interface User {
name: string;
}This error occurs when there's a stray semicolon or invalid syntax within an interface or type declaration.