import { ComponentPackage } from './componentPackageService.type'; export type Component = { _id: string; image: string; name: string; description: string; package: Omit; projects: { _id: string; name: string; initial: string; }[]; status: 'Fixing Bug' | 'On Progress' | 'Selesai'; assignee: { _id: string; fullName: string; nickName: string; key: number; profilePicture: string; }; lastUpdate: string; }; export type ComponentEventLog = { _id: string; event: string; user: { _id: string; fullName: string; nickName: string; key: number; profilePicture: string; }; date: string; version: string; description: string; };