import { ITask, IWorker } from "../models"; /** * State of a worker * @typedef SupervisorWorkerState * @property {IWorker} worker worker instance * @property {Array} tasks tasks of the worker * @memberof AppState */ export interface SupervisorWorkerState { worker: IWorker; tasks: Array; }