/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { UserPartial } from './user'; export interface Component { isAssigneeTypeValid?: boolean; self?: string; id?: string; name?: string; description?: string; lead?: UserPartial; assigneeType?: 'PROJECT_DEFAULT' | 'COMPONENT_LEAD' | 'PROJECT_LEAD' | 'UNASSIGNED'; assignee?: UserPartial; realAssigneeType?: 'PROJECT_DEFAULT' | 'COMPONENT_LEAD' | 'PROJECT_LEAD' | 'UNASSIGNED'; realAssignee?: UserPartial; project?: string; projectId?: number; archived?: boolean; } //# sourceMappingURL=component.d.ts.map