summaryrefslogtreecommitdiff
path: root/src/types.ts
blob: 29d14a361e48ab95238116a27110b8f3dddeea99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
export interface Project {
	id: string;
	owner: string;
	name: string;
}

export interface Node {
	id: string;
	x: number;
	y: number;
	name: string;
}

export interface Link {
	id: string;
	from: string;
	to: string;
}