Files
pepperplus-ui/src/pages/VisProgPage/visualProgrammingUI/nodes/GoalNode.default.ts
2025-11-18 12:35:53 +01:00

11 lines
213 B
TypeScript

import type { GoalNodeData } from "./GoalNode";
/**
* Default data for this node
*/
export const GoalNodeDefaults: GoalNodeData = {
label: "Goal Node",
droppable: true,
GoalList: [],
hasReduce: true,
};