mirror of
https://github.com/zadam/trilium.git
synced 2025-10-20 07:08:55 +02:00
17 lines
557 B
TypeScript
17 lines
557 B
TypeScript
import FNote from "../../entities/fnote";
|
|
|
|
export const allViewTypes = ["list", "grid", "calendar", "table", "geoMap", "board", "presentation"] as const;
|
|
export type ViewTypeOptions = typeof allViewTypes[number];
|
|
|
|
export interface ViewModeProps<T extends object> {
|
|
note: FNote;
|
|
notePath: string;
|
|
/**
|
|
* We're using noteIds so that it's not necessary to load all notes at once when paging.
|
|
*/
|
|
noteIds: string[];
|
|
highlightedTokens: string[] | null | undefined;
|
|
viewConfig: T | undefined;
|
|
saveConfig(newConfig: T): void;
|
|
}
|