1 import type { CollectionEntry } from "astro:content"; 2 3 export type PostMeta = CollectionEntry<"posts">["data"]; 4 export type Post = CollectionEntry<"posts">;