refactor(client): move implementation out of note_list_renderer

This commit is contained in:
Elian Doran
2025-02-13 23:23:18 +02:00
parent 27168b0dc5
commit e2bbee8e16
3 changed files with 423 additions and 393 deletions

View File

@@ -0,0 +1,11 @@
import type FNote from "../../entities/fnote.js";
export default abstract class ViewMode {
constructor($parent: JQuery<HTMLElement>, parentNote: FNote, noteIds: string[], showNotePath: boolean = false) {
}
abstract renderList(): Promise<JQuery<HTMLElement> | undefined>;
}