remove , using instead

This commit is contained in:
weishu
2026-03-16 18:29:09 +08:00
parent 02c8e12e80
commit 329d28a93c
40 changed files with 384 additions and 285 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
import { z } from 'zod'
import type { ModelMode, PermissionMode } from './modes'
import type { PermissionMode } from './modes'
export type SocketErrorReason = 'namespace-missing' | 'access-denied' | 'not-found'
@@ -139,7 +139,7 @@ export interface ClientToServerEvents {
thinking: boolean
mode?: 'local' | 'remote'
permissionMode?: PermissionMode
modelMode?: ModelMode
model?: string | null
}) => void
'session-end': (data: { sid: string; time: number }) => void
'update-metadata': (data: { sid: string; expectedVersion: number; metadata: unknown }, cb: (answer: {