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

Remove 'any' types from 14 files (#58716)

This commit is contained in:
Kevin Heis
2025-12-10 08:07:04 -08:00
committed by GitHub
parent 21eb8177cd
commit 13178f0183
16 changed files with 207 additions and 133 deletions

View File

@@ -29,7 +29,7 @@ async function main() {
includeBasePath: true,
globs: ['**/*.md'],
})
const cliMarkdownContents: Record<string, { data: any; content: string }> = {}
const cliMarkdownContents: Record<string, { data: Record<string, unknown>; content: string }> = {}
for (const file of markdownFiles) {
const sourceContent = await readFile(file, 'utf8')