- Go backend (server/)
- Frontend (web/, server/static/)
- Database and deployment files
- Scripts and docs
Co-Authored-By: 狸花猫/Claude-Qwen3.6-Plus 🐾
8 lines
349 B
TypeScript
8 lines
349 B
TypeScript
import { GraphData } from './types';
|
|
export declare const findShortestPath: (graphData: GraphData, start: string, end: string, directed?: boolean, weightPropertyName?: string) => {
|
|
length: any;
|
|
path: any;
|
|
allPath: any;
|
|
};
|
|
export declare const findAllPath: (graphData: GraphData, start: string, end: string, directed?: boolean) => any[];
|