//// [interface0.ts] interface Generic { x: T; } var y: Generic = { x: 3 }; //// [interface0.js] var y = { x: 3 };