TypeScript/tests/baselines/reference/objectLiteralWithNumericPropertyName.js
2014-07-12 17:30:19 -07:00

14 lines
181 B
JavaScript

//// [objectLiteralWithNumericPropertyName.ts]
interface A {
0: string;
}
var x: A = {
0: 3
};
//// [objectLiteralWithNumericPropertyName.js]
var x = {
0: 3
};