From 1f93fca1d36734bc0abc227214cf8d96eba513cd Mon Sep 17 00:00:00 2001 From: Bjorn Lu Date: Fri, 11 Oct 2024 14:48:11 +0800 Subject: [PATCH] Fix biome lint warning (#12187) --- packages/astro/types/content.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/astro/types/content.d.ts b/packages/astro/types/content.d.ts index 1715a30a42..2bb3786b88 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 = any; /** Run `astro sync` to generate high fidelity types */ export type ContentCollectionKey = any;