(id: string)
| 4 | export interface AgentDraft { |
| 5 | list(): readonly AgentV2Info[] |
| 6 | get(id: string): AgentV2Info | undefined |
| 7 | default(id: string | undefined): void |
| 8 | update(id: string, update: (agent: AgentV2Info) => void): void |
| 9 | remove(id: string): void |
no outgoing calls