Constructor implementation is missing.ts(2390)の解決方法

Constructor implementation is missingが発生した時のコード

以下のコードだとエラーが発生してしまった。

class TodoController {
  constructor(private readonly todoService: TodoService)
}

解決方法

constructorの末尾に{}をつける。

class TodoController {
  constructor(private readonly todoService: TodoService){}
}

上記のように{}を付けるだけで、「Constructor implementation is missing」のエラーは無くなりました。

タイトルとURLをコピーしました