1
0
mirror of synced 2025-12-19 18:10:59 -05:00

Replace any types with unknown/specific types (#58658)

This commit is contained in:
Kevin Heis
2025-12-03 07:43:11 -08:00
committed by GitHub
parent 97b71c20d7
commit 03945b8c27
20 changed files with 185 additions and 91 deletions

View File

@@ -14,7 +14,7 @@ import type { MarkdownFrontmatter } from '@/types'
// Type definitions - extending existing type to add missing fields and make most fields optional
type FrontmatterData = Partial<MarkdownFrontmatter> & {
autogenerated?: string
[key: string]: any
[key: string]: unknown
}
type SourceContentItem = {