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