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 bcd31bfa38a6de9fbb609d7d564d453959a9a365 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}