10 lines
193 B
TypeScript
10 lines
193 B
TypeScript
import type { EndNodeData } from "./EndNode";
|
|
|
|
/**
|
|
* Default data for this node.
|
|
*/
|
|
export const EndNodeDefaults: EndNodeData = {
|
|
label: "End Node",
|
|
droppable: false,
|
|
hasReduce: true
|
|
}; |