a new post!!
This commit is contained in:
Vendored
+17
@@ -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<{
|
||||
@@ -217,6 +227,13 @@ declare module 'astro:content' {
|
||||
collection: "blog";
|
||||
data: InferEntrySchema<"blog">
|
||||
} & { render(): Render[".md"] };
|
||||
"default-apps-2023.md": {
|
||||
id: "default-apps-2023.md";
|
||||
slug: "default-apps-2023";
|
||||
body: string;
|
||||
collection: "blog";
|
||||
data: InferEntrySchema<"blog">
|
||||
} & { render(): Render[".md"] };
|
||||
"finding-home-in-hyrule.md": {
|
||||
id: "finding-home-in-hyrule.md";
|
||||
slug: "finding-home-in-hyrule";
|
||||
|
||||
Reference in New Issue
Block a user