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