TypeScript/tests/cases/compiler/parseShortform.ts

11 lines
218 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
interface I {
w: {
z: I;
(): boolean;
[s: string]: { x: any; y: any; };
[n: number]: { x: any; y: any; };
};
x: boolean;
y: (s: string) => boolean;
z: I;
}