--- import NoteGraph from "./NoteGraph.svelte"; import Author from "./Author.astro"; import { formatDate } from "../utils/notes"; import type { CollectionEntry } from "astro:content"; interface Props { entry: CollectionEntry<"notes">; graphNodes: { id: string; title: string; current: boolean }[]; graphEdges: { from: string; to: string }[]; forwardLinks: CollectionEntry<"notes">[]; backlinks: CollectionEntry<"notes">[]; } const { entry, graphNodes, graphEdges, forwardLinks, backlinks } = Astro.props; ---