Code QuizIntermediate

Function Type Interface

Spot the incorrect syntax in a call signature interface.

Codetypescript
interface Add {
  (a: number, b: number) => number;
}

const add: Add = (a, b) => a + b;

What is the bug in this code?