UNPKG

@rs-box/ez-flow

Version:
12 lines (11 loc) 401 B
import { WorkContext } from './work-context'; import { WorkReport } from './work-report'; import { WorkStatus } from './work-status'; export declare class ParallelWorkReport implements WorkReport { private workReportList; constructor(workReportList: WorkReport[]); getError(): Error[]; getWorkContext(): WorkContext; getWorkStatus(): WorkStatus; getWorkList(): WorkReport[]; }