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

14 lines
261 B
TypeScript

class IPropertySet {
[index: string]: any
}
var ps: IPropertySet = null;
var index: any = "hello";
ps[index] = 12;
interface indexErrors {
[p2?: string];
[...p3: any[]];
[p4: string, p5?: string];
[p6: string, ...p7: any[]];
}