以下のTypeScriptコードで型エラーが発生するのはどれですか? ```typescript function greet(name: string): string { return `Hello, ${name}!`; } ```