@skbkontur/cassandra-distributed-task-queue-ui
Version:
.NET library implementing distributed task queue machinery using Apache Cassandra
10 lines (9 loc) • 417 B
TypeScript
/// <reference types="react" />
import { Location } from "react-router-dom";
import { RtqMonitoringTaskModel } from "../../Domain/Api/RtqMonitoringTaskModel";
interface TaskChainTreeProps {
taskDetails: RtqMonitoringTaskModel[];
getTaskLocation: (id: string) => string | Partial<Location>;
}
export declare function TaskChainTree({ taskDetails, getTaskLocation }: TaskChainTreeProps): JSX.Element;
export {};