import type { IActivityTaskEntry } from "./IActivityTaskEntry.js"; /** * Denotes a task associated with an Activity */ export interface IActivityTask { /** * The activity log entry. */ activityLogEntryId: string; /** * The associated tasks */ associatedTasks: IActivityTaskEntry[]; }