/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { RootIssueBean } from "../definitions/RootIssueBean"; export interface PlanItemBean { epicIssue?: RootIssueBean; id: number; parentIssue?: RootIssueBean; issueStatus?: { name?: string; color?: string; }; type: "COMPONENT" | "EPIC" | "ISSUE" | "PROJECT" | "SPRINT" | "VERSION" | "ISSUE" | "EPIC" | "PROJECT" | "COMPONENT" | "SPRINT" | "VERSION"; } //# sourceMappingURL=PlanItemBean.d.ts.map