//// [extendedInterfacesWithDuplicateTypeParameters.ts] interface InterfaceWithMultipleTypars { // should error bar(): void; } interface InterfaceWithSomeTypars { // should not error bar(): void; } interface InterfaceWithSomeTypars { // should error bar2(): void; } //// [extendedInterfacesWithDuplicateTypeParameters.js]