import { TaskContextProps } from "../../context"; /** * Properties of TaskOverviewCanvas. * * @typedef Supervisor․TaskOverviewCanvasProps * @property {string} [firstLine] - First line shown in task overview. * @property {string} [secondLine] - Second line shown in task overview. * @property {DynamicContentStore.DynamicComponentChildren} [children] - children * @memberof Supervisor․TaskOverviewCanvas */ export interface TaskOverviewCanvasProps extends TaskContextProps { firstLine?: string; secondLine?: string; }