@skbkontur/cassandra-distributed-task-queue-ui
Version:
.NET library implementing distributed task queue machinery using Apache Cassandra
11 lines (10 loc) • 353 B
TypeScript
import { ReactElement } from "react";
interface TasksModalProps {
modalType: "Rerun" | "Cancel";
counter: number;
onCancelAll: () => void;
onRerunAll: () => void;
onCloseModal: () => void;
}
export declare function TasksModal({ modalType, counter, onCancelAll, onRerunAll, onCloseModal, }: TasksModalProps): ReactElement;
export {};