mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-18 14:25:51 +00:00
feat: 完成一大波类型修复, 虽然 any 很多
This commit is contained in:
@@ -136,7 +136,7 @@ async function isAppleTerminalBellDisabled(): Promise<boolean> {
|
||||
// Lazy-load plist (~280KB with xmlbuilder+@xmldom) — only hit on
|
||||
// Apple_Terminal with auto-channel, which is a small fraction of users.
|
||||
const plist = await import('plist')
|
||||
const parsed: Record<string, unknown> = plist.parse(defaultsOutput.stdout)
|
||||
const parsed: Record<string, unknown> = plist.parse(defaultsOutput.stdout) as any
|
||||
const windowSettings = parsed?.['Window Settings'] as
|
||||
| Record<string, unknown>
|
||||
| undefined
|
||||
|
||||
Reference in New Issue
Block a user