TS1484
ContentCollectionKeyis a type and must be imported using a type-only import whenverbatimModuleSyntaxis enabled.
Broken Code ❌
import { ContentCollectionKey, getCollection } from 'astro:content';Fixed Code ✔️
Type-only imports can be made using the type keyword in front of your type's name:
import { type ContentCollectionKey, getCollection } from 'astro:content';