Skip to content

Commit

Permalink
types
Browse files Browse the repository at this point in the history
  • Loading branch information
andrioid committed Jul 15, 2024
1 parent e0ba867 commit 08f788e
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .astro/types.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
declare module 'astro:content' {
interface Render {
'.mdx': Promise<{
Content: import('astro').MarkdownInstance<{}>['Content'];
headings: import('astro').MarkdownHeading[];
remarkPluginFrontmatter: Record<string, any>;
}>;
}
}

declare module 'astro:content' {
interface Render {
'.md': Promise<{
Expand Down

0 comments on commit 08f788e

Please sign in to comment.