TypeScript/tests/baselines/reference/objectLiteralIndexerNoImplicitAny.js

14 lines
187 B
TypeScript

//// [objectLiteralIndexerNoImplicitAny.ts]
interface I {
[s: string]: any;
}
var x: I = {
p: null
}
//// [objectLiteralIndexerNoImplicitAny.js]
var x = {
p: null
};