We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d116a17 commit bd78ccfCopy full SHA for bd78ccf
1 file changed
todomvc/js/todos.ts
@@ -202,6 +202,8 @@ class TodoView extends Backbone.View {
202
input: JQuery;
203
204
constructor (options? ) {
205
+ // A call to super() is needed to avoid TS17009.
206
+ super();
207
//... is a list tag.
208
this.tagName = "li";
209
@@ -373,4 +375,4 @@ class AppView extends Backbone.View {
373
375
$(() => {
374
376
// Finally, we kick things off by creating the **App**.
377
new AppView();
-});
378
+});
0 commit comments