a new post!!

This commit is contained in:
2023-11-26 10:38:18 -05:00
parent ff17cd2bb6
commit 0e8ec59e49
2 changed files with 86 additions and 0 deletions
+17
View File
@@ -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";