Fork of Chiri for Astro for my blog
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at c1ddc22aeb5d413d714699c1f7d8cd84a225615e 12 lines 357 B view raw
1/// <reference types="astro/client" /> 2/// <reference types="astro/content" /> 3 4declare module 'astro:content' { 5 interface Render { 6 '.md': Promise<{ 7 Content: import('astro').MarkdownInstance<Record<string, unknown>>['Content'] 8 headings: import('astro').MarkdownHeading[] 9 remarkPluginFrontmatter: Record<string, unknown> 10 }> 11 } 12}