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