TypeScript/tests/baselines/reference/computedPropertyNamesContextualType7_ES6.js

24 lines
389 B
TypeScript

//// [computedPropertyNamesContextualType7_ES6.ts]
interface I<T> {
[s: number]: T;
}
declare function foo<T>(obj: I<T>): T
foo({
p: "",
0: () => { },
["hi" + "bye"]: true,
[0 + 1]: 0,
[+"hi"]: [0]
});
//// [computedPropertyNamesContextualType7_ES6.js]
foo({
p: "",
0: () => { },
["hi" + "bye"]: true,
[0 + 1]: 0,
[+"hi"]: [0]
});