chore: enforce erasable TypeScript syntax

This commit is contained in:
Mario Zechner
2026-05-19 23:15:39 +02:00
parent 48b6510c18
commit 06c6c324d7
17 changed files with 122 additions and 74 deletions
@@ -1056,7 +1056,11 @@ class TreeList implements Component {
/** Component that displays the current search query */
class SearchLine implements Component {
constructor(private treeList: TreeList) {}
private treeList: TreeList;
constructor(treeList: TreeList) {
this.treeList = treeList;
}
invalidate(): void {}