diff options
-rw-r--r-- | packages/astro/types/content.d.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/astro/types/content.d.ts b/packages/astro/types/content.d.ts index 1715a30a4..2bb3786b8 100644 --- a/packages/astro/types/content.d.ts +++ b/packages/astro/types/content.d.ts @@ -98,6 +98,7 @@ declare module 'astro:content' { /** Run `astro sync` to generate high fidelity types */ export type CollectionKey = any; /** Run `astro sync` to generate high fidelity types */ + // biome-ignore lint/correctness/noUnusedVariables: stub generic type to match generated type export type CollectionEntry<C> = any; /** Run `astro sync` to generate high fidelity types */ export type ContentCollectionKey = any; |