-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathtypes.ts
More file actions
44 lines (38 loc) · 742 Bytes
/
Copy pathtypes.ts
File metadata and controls
44 lines (38 loc) · 742 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
export type Graph = any;
export type GraphNode = {
id: string;
name?: string;
size?: number;
};
export type GraphEdge = {
source: string;
target: string;
width?: number;
};
// export type GraphAttrsAvail = {
// nodeName?: boolean;
// nodeSize?: boolean;
// nodeColor?: boolean;
// edgeName?: boolean;
// edgeWeight?: boolean;
// edgeColor?: boolean;
// };
export enum NodeFields {
ID = "id",
LABEL = "label",
SIZE = "size",
COLOR = "color",
}
export enum EdgeFields {
ID = "id",
SOURCE = "source",
TARGET = "target",
LABEL = "label",
WIDTH = "width",
}
export type GistResults = {
isDataLoading?: boolean;
nodesQuery?: string;
edgesQuery?: string;
csvFiles?: Record<string, string>;
};