update baseline (#37692)

This commit is contained in:
Alexander T 2020-03-30 21:52:09 +03:00 committed by GitHub
parent d8170faee1
commit 64cb578945
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,9 +12,9 @@ function f() {
console.log(b);
>console.log(b) : void
>console.log : (message?: any, ...optionalParams: any[]) => void
>console.log : (...data: any[]) => void
>console : Console
>log : (message?: any, ...optionalParams: any[]) => void
>log : (...data: any[]) => void
>b : string | number
}
@ -28,9 +28,9 @@ function f() {
console.log(a);
>console.log(a) : void
>console.log : (message?: any, ...optionalParams: any[]) => void
>console.log : (...data: any[]) => void
>console : Console
>log : (message?: any, ...optionalParams: any[]) => void
>log : (...data: any[]) => void
>a : string | number
}