You've already forked obsidian-visualiser
Add gitea content searching and fix lots of things
This commit is contained in:
@@ -1,3 +1,13 @@
|
||||
export interface Canvas {
|
||||
_id: string;
|
||||
_type: string;
|
||||
body: CanvasContent
|
||||
}
|
||||
export interface CanvasContent {
|
||||
nodes: CanvasNode[];
|
||||
edges: CanvasEdge[];
|
||||
groups: CanvasGroup[];
|
||||
}
|
||||
export interface CanvasNode {
|
||||
type: 'group' | 'text';
|
||||
id: string;
|
||||
@@ -17,4 +27,8 @@ export interface CanvasEdge {
|
||||
toSide: 'bottom' | 'top' | 'left' | 'right';
|
||||
color?: string;
|
||||
label?: string;
|
||||
};
|
||||
};
|
||||
export interface CanvasGroup {
|
||||
name: string;
|
||||
nodes: string[];
|
||||
}
|
||||
Reference in New Issue
Block a user