11 lines
213 B
TypeScript
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,
|
|
}; |