diff options
| author | Matthew Kosarek <matthew@matthewkosarek.xyz> | 2026-08-09 19:32:06 -0400 |
|---|---|---|
| committer | Matthew Kosarek <matthew@matthewkosarek.xyz> | 2026-08-09 19:32:06 -0400 |
| commit | edd3b0972115ebddd068ed226158ace07c706401 (patch) | |
| tree | eca3a2ffc85283a99bbce1e7b0068ff5caa78f58 /.astro/content.d.ts | |
| parent | e51d273eff923a2c0c691d6f1d740bde74d05b56 (diff) | |
Diffstat (limited to '.astro/content.d.ts')
| -rw-r--r-- | .astro/content.d.ts | 8 |
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; +}>; }; |
