import { IGeneralStatus } from './status'; export interface IEventTrack { _id?: string; id?: string; workflowId: string; activityId: string; componentId: number; componentName: string; events: { id?: string; name: string; params: { name: string; value: string | number; }[]; }[]; status: IGeneralStatus; createdAt: string; updatedAt: string; }