TS1009Trailing comma not allowed.If an inheritance clause (extends or implements) has a trailing comma, this error is reported: interface A {} class B implements A { }Fix: Remove trailing commaRemove the trailing comma: interface A {} class B implements A { }trailing-commasyntax-error