This commit is contained in:
Barrett Ruth 2025-12-27 16:19:55 -06:00
parent d03bb03649
commit 92be091796
9 changed files with 80 additions and 2 deletions

View file

@ -6,7 +6,8 @@ export type CollectionKey =
| "meditations"
| "autonomous-racing"
| "git"
| "gists";
| "gists"
| "death";
export type PostCollection = Exclude<CollectionKey, "git" | "gists">;
export type AnyCollectionEntry =
@ -14,5 +15,6 @@ export type AnyCollectionEntry =
| CollectionEntry<"software">
| CollectionEntry<"meditations">
| CollectionEntry<"autonomous-racing">
| CollectionEntry<"death">
| CollectionEntry<"git">
| CollectionEntry<"gists">;