16 lines
491 B
TypeScript
16 lines
491 B
TypeScript
// This program has been developed by students from the bachelor Computer Science at Utrecht
|
|
// University within the Software Project course.
|
|
// © Copyright Utrecht University (Department of Information and Computing Sciences)
|
|
import type { PhaseNodeData } from "./PhaseNode";
|
|
|
|
/**
|
|
* Default data for this node
|
|
*/
|
|
export const PhaseNodeDefaults: PhaseNodeData = {
|
|
label: "Phase Node",
|
|
droppable: true,
|
|
children: [],
|
|
hasReduce: true,
|
|
nextPhaseId: null,
|
|
isFirstPhase: false,
|
|
}; |