summaryrefslogtreecommitdiff
path: root/api.d.ts
blob: 8539ad8ee9286b59882a51916bad511fccb9f3e3 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
export type OrgRoamGraphReponse = {
  nodes: OrgRoamNode[]
  links: OrgRoamLink[]
}

export type OrgRoamNode = {
  id: string
  file: string
  title: string
  level: number
}

export type OrgRoamLink = {
  source: string
  target: string
  type: string
}