feat: add 'answer' to NodeType union for branch placeholder stubs

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
chihlasm
2026-02-18 01:27:59 -05:00
parent f39b4f7fdc
commit f6ad3a1546

View File

@@ -1,7 +1,7 @@
import type { CategoryInfo } from './category'
// Tree node types
export type NodeType = 'decision' | 'action' | 'solution'
export type NodeType = 'decision' | 'action' | 'solution' | 'answer'
export interface TreeOption {
id: string