返回 oh-my-ppt
types.ts
根目录 / src / main / agent-runtime / types.ts
1 export type RuntimeDomain = 'generation' | 'image' | 'style' | 'edit'
2
3 export type RuntimeOwner = {
4 sessionId?: string
5 styleId?: string
6 imageHistoryOwner?: string
7 }
8
9 export type RuntimeAudience =
10 | { kind: 'owner' }
11 | { kind: 'requester'; subscriberId: string }
12 | { kind: 'broadcast' }
13
13 lines TYPESCRIPT