Accept changed baseline (#24222)

This commit is contained in:
Wesley Wigham 2018-05-17 14:07:49 -07:00 committed by GitHub
parent 3fc3df3c3a
commit c25b02fb5b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -24,8 +24,8 @@ function C() {
=== tests/cases/conformance/jsdoc/use.js ===
/** @param {import('./mod1').Con} k */
function f(k) {
>f : (k: (error: any) => any) => any
>k : (error: any) => any
>f : (k: import("tests/cases/conformance/jsdoc/mod1").Con) => any
>k : import("tests/cases/conformance/jsdoc/mod1").Con
if (1 === 2 - 1) {
>1 === 2 - 1 : boolean
@ -38,7 +38,7 @@ function f(k) {
}
return k({ ok: true})
>k({ ok: true}) : any
>k : (error: any) => any
>k : import("tests/cases/conformance/jsdoc/mod1").Con
>{ ok: true} : { ok: boolean; }
>ok : boolean
>true : true