| 2 | import type { GraphData } from "../lib/types"; |
| 3 | |
| 4 | export interface LoadProgress { |
| 5 | receivedBytes: number; |
| 6 | totalBytes: number | null; |
| 7 | } |
| 8 | |
| 9 | interface UseGraphDataResult { |
| 10 | data: GraphData | null; |
nothing calls this directly
no outgoing calls
no test coverage detected