blob: 193f4c6f2912406a057a5d1487fa8e7fa62a5888 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
declare module 'astro:content' {
interface Render {
'.mdoc': Promise<{
Content(props: Record<string, any>): import('astro').MarkdownInstance<{}>['Content'];
headings: import('astro').MarkdownHeading[];
}>;
}
}
|