TypeScript/tests/baselines/reference/computedPropertyNamesContextualType6.js
2015-02-06 18:45:09 -08:00

24 lines
381 B
JavaScript

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