diff options
author | 2023-01-03 21:33:40 +0000 | |
---|---|---|
committer | 2023-01-03 21:33:40 +0000 | |
commit | 163a9a9d0ef8b08a71033e719ba06ff63cd2df60 (patch) | |
tree | 44040c0ec07d72c34786e2daf5dc26b56b6bc074 /examples/with-content/src | |
parent | e2019be6ffa46fa33d92cfd346f9ecbe51bb7144 (diff) | |
download | astro-163a9a9d0ef8b08a71033e719ba06ff63cd2df60.tar.gz astro-163a9a9d0ef8b08a71033e719ba06ff63cd2df60.tar.zst astro-163a9a9d0ef8b08a71033e719ba06ff63cd2df60.zip |
[ci] format
Diffstat (limited to 'examples/with-content/src')
-rw-r--r-- | examples/with-content/src/content/types.generated.d.ts | 77 |
1 files changed, 38 insertions, 39 deletions
diff --git a/examples/with-content/src/content/types.generated.d.ts b/examples/with-content/src/content/types.generated.d.ts index ef8bd420e..906aabb75 100644 --- a/examples/with-content/src/content/types.generated.d.ts +++ b/examples/with-content/src/content/types.generated.d.ts @@ -42,45 +42,44 @@ declare module 'astro:content' { }; const entryMap: { - "blog": { -"first-post.md": { - id: "first-post.md", - slug: "first-post", - body: string, - collection: "blog", - data: InferEntrySchema<"blog"> -}, -"markdown-style-guide.md": { - id: "markdown-style-guide.md", - slug: "markdown-style-guide", - body: string, - collection: "blog", - data: InferEntrySchema<"blog"> -}, -"second-post.md": { - id: "second-post.md", - slug: "second-post", - body: string, - collection: "blog", - data: InferEntrySchema<"blog"> -}, -"third-post.md": { - id: "third-post.md", - slug: "third-post", - body: string, - collection: "blog", - data: InferEntrySchema<"blog"> -}, -"using-mdx.mdx": { - id: "using-mdx.mdx", - slug: "using-mdx", - body: string, - collection: "blog", - data: InferEntrySchema<"blog"> -}, -}, - + blog: { + 'first-post.md': { + id: 'first-post.md'; + slug: 'first-post'; + body: string; + collection: 'blog'; + data: InferEntrySchema<'blog'>; + }; + 'markdown-style-guide.md': { + id: 'markdown-style-guide.md'; + slug: 'markdown-style-guide'; + body: string; + collection: 'blog'; + data: InferEntrySchema<'blog'>; + }; + 'second-post.md': { + id: 'second-post.md'; + slug: 'second-post'; + body: string; + collection: 'blog'; + data: InferEntrySchema<'blog'>; + }; + 'third-post.md': { + id: 'third-post.md'; + slug: 'third-post'; + body: string; + collection: 'blog'; + data: InferEntrySchema<'blog'>; + }; + 'using-mdx.mdx': { + id: 'using-mdx.mdx'; + slug: 'using-mdx'; + body: string; + collection: 'blog'; + data: InferEntrySchema<'blog'>; + }; + }; }; - type ContentConfig = typeof import("./config"); + type ContentConfig = typeof import('./config'); } |