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