summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar bholmesdev <bholmesdev@users.noreply.github.com> 2023-01-10 13:48:30 +0000
committerGravatar fredkbot <fred+astrobot@astro.build> 2023-01-10 13:48:30 +0000
commitcf5dc2adae04c1ab3fcf95bb2426e82733737852 (patch)
treeabd2709570b0cd796a64864d84a3cdc50c403f49
parent5d960fc40ed62b08a1a94791698b39815d1450a9 (diff)
downloadastro-cf5dc2adae04c1ab3fcf95bb2426e82733737852.tar.gz
astro-cf5dc2adae04c1ab3fcf95bb2426e82733737852.tar.zst
astro-cf5dc2adae04c1ab3fcf95bb2426e82733737852.zip
[ci] format
-rw-r--r--examples/with-content/src/content/types.generated.d.ts77
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 7a253b039..d9d0b5667 100644
--- a/examples/with-content/src/content/types.generated.d.ts
+++ b/examples/with-content/src/content/types.generated.d.ts
@@ -55,45 +55,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');
}