TypeScript/tests/baselines/reference/thisTypeInTuples.js
2015-09-27 09:05:17 -07:00

17 lines
295 B
TypeScript

//// [thisTypeInTuples.ts]
interface Array<T> {
slice(): this;
}
let t: [number, string] = [42, "hello"];
let a = t.slice();
let b = t.slice(1);
let c = t.slice(0, 1);
//// [thisTypeInTuples.js]
var t = [42, "hello"];
var a = t.slice();
var b = t.slice(1);
var c = t.slice(0, 1);