0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-01-06 22:10:10 -05:00

[ci] format

This commit is contained in:
bholmesdev 2023-01-10 13:48:30 +00:00 committed by fredkbot
parent 5d960fc40e
commit cf5dc2adae

View file

@ -55,45 +55,44 @@ declare module 'astro:content' {
}; };
const entryMap: { const entryMap: {
"blog": { blog: {
"first-post.md": { 'first-post.md': {
id: "first-post.md", id: 'first-post.md';
slug: "first-post", slug: 'first-post';
body: string, body: string;
collection: "blog", collection: 'blog';
data: InferEntrySchema<"blog"> data: InferEntrySchema<'blog'>;
}, };
"markdown-style-guide.md": { 'markdown-style-guide.md': {
id: "markdown-style-guide.md", id: 'markdown-style-guide.md';
slug: "markdown-style-guide", slug: 'markdown-style-guide';
body: string, body: string;
collection: "blog", collection: 'blog';
data: InferEntrySchema<"blog"> data: InferEntrySchema<'blog'>;
}, };
"second-post.md": { 'second-post.md': {
id: "second-post.md", id: 'second-post.md';
slug: "second-post", slug: 'second-post';
body: string, body: string;
collection: "blog", collection: 'blog';
data: InferEntrySchema<"blog"> data: InferEntrySchema<'blog'>;
}, };
"third-post.md": { 'third-post.md': {
id: "third-post.md", id: 'third-post.md';
slug: "third-post", slug: 'third-post';
body: string, body: string;
collection: "blog", collection: 'blog';
data: InferEntrySchema<"blog"> data: InferEntrySchema<'blog'>;
}, };
"using-mdx.mdx": { 'using-mdx.mdx': {
id: "using-mdx.mdx", id: 'using-mdx.mdx';
slug: "using-mdx", slug: 'using-mdx';
body: string, body: string;
collection: "blog", collection: 'blog';
data: InferEntrySchema<"blog"> data: InferEntrySchema<'blog'>;
}, };
}, };
}; };
type ContentConfig = typeof import("./config"); type ContentConfig = typeof import('./config');
} }