@5minds/processcube_app_sdk
Version:
The SDK for ProcessCube Apps
16 lines (15 loc) • 425 B
TypeScript
type AggregatedRuntimes = {
average: number;
shortest: number;
longest: number;
};
export declare class RuntimeService {
private runtimeStatsById;
constructor(instances: any[], processModelHash: string);
getStats(flowNodeId: string): AggregatedRuntimes;
private aggregateRuntimes;
private setMappedRuntimes;
private getTimesFromProcessInstances;
private getFlowNodeTimes;
}
export {};