aboutsummaryrefslogtreecommitdiff
path: root/packages/integrations/mdx/template/content-module-types.d.ts
blob: 848289f01e581b82d0266f14f7312582b4c7ed35 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
declare module 'astro:content' {
	interface Render {
		'.mdx': Promise<{
			Content: import('astro').MarkdownInstance<{}>['Content'];
			headings: import('astro').MarkdownHeading[];
			remarkPluginFrontmatter: Record<string, any>;
			components: import('astro').MDXInstance<{}>['components'];
		}>;
	}
}