blob: 203106b1d9cc40c19b234fcba017934500dba384 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
export type OrgRoamGraphReponse = {
nodes: OrgRoamNode[]
links: OrgRoamLink[]
tags: string[]
}
export type OrgRoamNode = {
id: string
file: string
title: string
level: number
pos: number
olp: string[] | null
properties: {
[key: string]: string | number
}
tags: string[]
}
export type OrgRoamLink = {
source: string
target: string
type: string
}
|