import { apiClientSafe } from './client.ts'; import type { GraphEdge, TreeEdge } from '@/types/index.ts'; export const fetchGraphEdges = (): Promise => apiClientSafe('/graph_hst', {}, []); export const fetchTreeEdges = (): Promise => apiClientSafe('/tree_hst', {}, []);