Vanessa 2022-09-28 23:53:04 +08:00
parent 284d78bc27
commit 5f8c76fc87
9 changed files with 443 additions and 23 deletions

View file

@ -1,6 +1,15 @@
type TLayout = "normal" | "top" | "bottom" | "left" | "right" | "center"
type TDirection = "lr" | "tb"
type TDockType = "file" | "outline" | "bookmark" | "tag" | "graph" | "globalGraph" | "backlink" | "inbox"
type TDockType =
"file"
| "outline"
| "bookmark"
| "tag"
| "graph"
| "globalGraph"
| "backlink"
| "backlinkOld"
| "inbox"
type TDockPosition = "Left" | "Right" | "Top" | "Bottom"
type TWS = "main" | "filetree" | "protyle"
type TEditorMode = "preview" | "wysiwyg"
@ -475,7 +484,7 @@ declare interface IModels {
editor: import("../editor").Editor [],
graph: import("../layout/dock/Graph").Graph[],
outline: import("../layout/dock/Outline").Outline[]
backlinks: import("../layout/dock/Backlinks").Backlinks[]
backlink: import("../layout/dock/Backlink").Backlink[]
asset: import("../asset").Asset[]
search: import("../search").Search[]
}