summaryrefslogtreecommitdiff
path: root/.astro/content.d.ts
diff options
context:
space:
mode:
authorMatthew Kosarek <matthew@matthewkosarek.xyz>2026-08-09 19:32:06 -0400
committerMatthew Kosarek <matthew@matthewkosarek.xyz>2026-08-09 19:32:06 -0400
commitedd3b0972115ebddd068ed226158ace07c706401 (patch)
treeeca3a2ffc85283a99bbce1e7b0068ff5caa78f58 /.astro/content.d.ts
parente51d273eff923a2c0c691d6f1d740bde74d05b56 (diff)
feature: add a reading pageHEADmaster
Diffstat (limited to '.astro/content.d.ts')
-rw-r--r--.astro/content.d.ts8
1 files changed, 8 insertions, 0 deletions
diff --git a/.astro/content.d.ts b/.astro/content.d.ts
index cccfa96..8d2cb8c 100644
--- a/.astro/content.d.ts
+++ b/.astro/content.d.ts
@@ -172,6 +172,14 @@ declare module 'astro:content' {
rendered?: RenderedContent;
filePath?: string;
}>;
+"reading": Record<string, {
+ id: string;
+ body?: string;
+ collection: "reading";
+ data: InferEntrySchema<"reading">;
+ rendered?: RenderedContent;
+ filePath?: string;
+}>;
};