Extract the DeepAgentTypeConfig from a DeepAgent-like type.
const agent = createDeepAgent({ subagents: [...] });type Config = ExtractDeepAgentConfig<typeof agent>;// Config includes { Subagents: [...] } Copy
const agent = createDeepAgent({ subagents: [...] });type Config = ExtractDeepAgentConfig<typeof agent>;// Config includes { Subagents: [...] }
Extract the DeepAgentTypeConfig from a DeepAgent-like type.