10 lines
387 B
TypeScript
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[],
|
|
} |