import type { CollectionEntry } from "astro:content"; export type CollectionKey = | "algorithms" | "software" | "meditations" | "autonomous-racing" | "git" | "gists" | "death"; export type PostCollection = Exclude; export type AnyCollectionEntry = | CollectionEntry<"algorithms"> | CollectionEntry<"software"> | CollectionEntry<"meditations"> | CollectionEntry<"autonomous-racing"> | CollectionEntry<"death"> | CollectionEntry<"git"> | CollectionEntry<"gists">;