mirror of
https://github.com/zadam/trilium.git
synced 2025-11-13 16:55:50 +01:00
6 lines
274 B
TypeScript
6 lines
274 B
TypeScript
|
|
import type { ViewModeArgs } from "../view_widgets/view_mode";
|
||
|
|
|
||
|
|
const allViewTypes = ["list", "grid", "calendar", "table", "geoMap", "board"] as const;
|
||
|
|
export type ArgsWithoutNoteId = Omit<ViewModeArgs, "noteIds">;
|
||
|
|
export type ViewTypeOptions = typeof allViewTypes[number];
|