Closed
Description
console.trace(a,b,c,1,2,3)
emits compilation error:
error TS2346: Supplied parameters do not match any signature of call target.
So, let's open the declaraion in /lib/lib.dom.d.ts:
interface Console {
log(message?: any, ...optionalParams: any[]): void;
// ......................
trace(): void;
}
arguments should be the same as in log(message?: any, ...optionalParams: any[])