TypeScript/tests/baselines/reference/promiseIdentity2.js
2017-02-13 15:14:45 -08:00

21 lines
742 B
TypeScript

//// [promiseIdentity2.ts]
export interface IPromise<T, V> {
then<U, W>(callback: (x: T) => IPromise<U, W>): IPromise<U, W>;
}
export interface Promise<T, V> {
then<U, W>(callback: (x: T) => Promise<T, U>): Promise<T, W>;
}
// error because T is string in the first declaration, and T is boolean in the second
// Return type and callback return type are ok because T is any in this particular Promise
var x: IPromise<string, number>;
var x: Promise<any, string>;
//// [promiseIdentity2.js]
"use strict";
exports.__esModule = true;
// error because T is string in the first declaration, and T is boolean in the second
// Return type and callback return type are ok because T is any in this particular Promise
var x;
var x;