fix: 修复 tsc 类型错误,通过 CI typecheck 阶段

- bridgeClient.ts: 添加缺失的 pairingInProgress 属性声明
- ink.tsx: 移除 5 处不再需要的 @ts-expect-error,保留 1 处 MACRO 比较
- client.ts: 添加缺失的 pendingSessionTarget 属性声明

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
claude-code-best
2026-05-01 22:00:29 +08:00
parent 9ea9859dce
commit 491c16da25
3 changed files with 3 additions and 6 deletions

View File

@@ -118,6 +118,7 @@ export class ACPClient {
reject: (err: Error) => void
timer: ReturnType<typeof setTimeout>
} | null = null
private pendingSessionTarget: string | null = null
private connectResolve: ((value: undefined) => void) | null = null
private connectReject: ((error: Error) => void) | null = null