TypeScript/tests/cases/compiler/indexSignatureWithTrailingComma.ts

12 lines
137 B
TypeScript

type A = {
[key: string,]: string;
};
interface B {
[key: string,]: string;
}
class C {
[key: string,]: null;
}