MCPcopy
hub / github.com/getredash/redash / LinkType

Interface LinkType

viz-lib/src/visualizations/sankey/d3sankey.ts:5–15  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3import d3 from "d3";
4
5export interface LinkType {
6 id: number;
7 name: string;
8 color: string;
9 x: number;
10 y: number;
11 dx: number;
12 dy: number;
13 source: SourceTargetType;
14 target: SourceTargetType;
15}
16
17export type SourceTargetType = {
18 sourceLinks: Array<LinkType>;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected