prettier/tests/typescript/compiler/indexSignatureWithInitializ...

8 lines
133 B
TypeScript

// These used to be indexers, now they are computed properties
interface I {
[x = '']: string;
}
class C {
[x = 0]: string
}