import type { GoalNodeData } from "./GoalNode"; /** * Default data for this node */ export const GoalNodeDefaults: GoalNodeData = { label: "Goal Node", droppable: true, description: "The robot will strive towards this goal", achieved: false, hasReduce: true, };