mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-04-17 01:49:41 -05:00
Accept new baselines
This commit is contained in:
@@ -391,15 +391,15 @@ f5(makePromise(1)).then(x => x);
|
||||
|
||||
f5(makePromise(makePromise(1))).then(x => x);
|
||||
>f5(makePromise(makePromise(1))).then(x => x) : Promise<number>
|
||||
>f5(makePromise(makePromise(1))).then : <TResult1 = Promise<number>, TResult2 = never>(onfulfilled?: (value: number) => TResult1 | PromiseLike<TResult1>, onrejected?: (reason: any) => TResult2 | PromiseLike<TResult2>) => Promise<awaited TResult1 | awaited TResult2>
|
||||
>f5(makePromise(makePromise(1))) : Promise<Promise<number>>
|
||||
>f5(makePromise(makePromise(1))).then : <TResult1 = number, TResult2 = never>(onfulfilled?: (value: number) => TResult1 | PromiseLike<TResult1>, onrejected?: (reason: any) => TResult2 | PromiseLike<TResult2>) => Promise<awaited TResult1 | awaited TResult2>
|
||||
>f5(makePromise(makePromise(1))) : Promise<number>
|
||||
>f5 : <U>(u: Promise<U>) => Promise<U>
|
||||
>makePromise(makePromise(1)) : Promise<Promise<number>>
|
||||
>makePromise : <T>(x: T) => Promise<T>
|
||||
>makePromise(1) : Promise<number>
|
||||
>makePromise : <T>(x: T) => Promise<T>
|
||||
>1 : 1
|
||||
>then : <TResult1 = Promise<number>, TResult2 = never>(onfulfilled?: (value: number) => TResult1 | PromiseLike<TResult1>, onrejected?: (reason: any) => TResult2 | PromiseLike<TResult2>) => Promise<awaited TResult1 | awaited TResult2>
|
||||
>then : <TResult1 = number, TResult2 = never>(onfulfilled?: (value: number) => TResult1 | PromiseLike<TResult1>, onrejected?: (reason: any) => TResult2 | PromiseLike<TResult2>) => Promise<awaited TResult1 | awaited TResult2>
|
||||
>x => x : (x: number) => number
|
||||
>x : number
|
||||
>x : number
|
||||
|
||||
Reference in New Issue
Block a user