From 6936c173c0edff5cbebd70b3e71153ef01c7034f Mon Sep 17 00:00:00 2001 From: ematipico Date: Thu, 10 Aug 2023 12:42:09 +0000 Subject: [PATCH] [ci] format --- packages/astro/content-types.template.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/astro/content-types.template.d.ts b/packages/astro/content-types.template.d.ts index c164fc297..edc50fcc9 100644 --- a/packages/astro/content-types.template.d.ts +++ b/packages/astro/content-types.template.d.ts @@ -10,7 +10,7 @@ declare module 'astro:content' { declare module 'astro:content' { export { z } from 'astro/zod'; - + type Flatten = T extends { [K: string]: infer U } ? U : never; export type CollectionEntry = Flatten;