11 lines
218 B
TypeScript
11 lines
218 B
TypeScript
import type { PhaseNodeData } from "./PhaseNode";
|
|
|
|
/**
|
|
* Default data for this node
|
|
*/
|
|
export const PhaseNodeDefaults: PhaseNodeData = {
|
|
label: "Phase Node",
|
|
droppable: true,
|
|
children: [],
|
|
hasReduce: true,
|
|
}; |