TypeScript/tests/cases/compiler/indexerSignatureWithRestParam.ts
2014-07-12 17:30:19 -07:00

7 lines
73 B
TypeScript

interface I {
[...x]: string;
}
class C {
[...x]: string
}