summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Bjorn Lu <bjornlu.dev@gmail.com> 2024-10-11 14:48:11 +0800
committerGravatar GitHub <noreply@github.com> 2024-10-11 14:48:11 +0800
commit1f93fca1d36734bc0abc227214cf8d96eba513cd (patch)
treeb7bab46b40d3f750adab7621e077695d4ee82ca2
parenta55ce2977fb2fd2294b12ae7e3210ce8916957e4 (diff)
downloadastro-1f93fca1d36734bc0abc227214cf8d96eba513cd.tar.gz
astro-1f93fca1d36734bc0abc227214cf8d96eba513cd.tar.zst
astro-1f93fca1d36734bc0abc227214cf8d96eba513cd.zip
Fix biome lint warning (#12187)
Diffstat (limited to '')
-rw-r--r--packages/astro/types/content.d.ts1
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;