Files
pepperplus-ui/src/pages/VisProgPage/visualProgrammingUI/components/Plan.default.ts
2026-01-28 10:34:36 +00:00

10 lines
387 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 { Plan, PlanElement } from "./Plan";
export const defaultPlan: Plan = {
name: "Default Plan",
id: "-1",
steps: [] as PlanElement[],
}