mirror of
https://github.com/zadam/trilium.git
synced 2025-11-16 02:05:53 +01:00
12 lines
290 B
TypeScript
12 lines
290 B
TypeScript
|
|
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>;
|
||
|
|
|
||
|
|
}
|