Files
url_tracker_tool/node_modules/mermaid/dist/diagrams/sankey/sankeyDB.d.ts
Andrei 58f8093689 Rebrand from 'Redirect Intelligence v2' to 'URL Tracker Tool V2' throughout UI
- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
2025-08-19 19:12:23 +00:00

37 lines
1.0 KiB
TypeScript

declare class SankeyLink {
source: SankeyNode;
target: SankeyNode;
value: number;
constructor(source: SankeyNode, target: SankeyNode, value?: number);
}
declare class SankeyNode {
ID: string;
constructor(ID: string);
}
declare const _default: {
nodesMap: Record<string, SankeyNode>;
getConfig: () => import("../../config.type.js").SankeyDiagramConfig | undefined;
getNodes: () => SankeyNode[];
getLinks: () => SankeyLink[];
getGraph: () => {
nodes: {
id: string;
}[];
links: {
source: string;
target: string;
value: number;
}[];
};
addLink: (source: SankeyNode, target: SankeyNode, value: number) => void;
findOrCreateNode: (ID: string) => SankeyNode;
getAccTitle: () => string;
setAccTitle: (txt: string) => void;
getAccDescription: () => string;
setAccDescription: (txt: string) => void;
getDiagramTitle: () => string;
setDiagramTitle: (txt: string) => void;
clear: () => void;
};
export default _default;