UNPKG

@skbkontur/cassandra-distributed-task-queue-ui

Version:

.NET library implementing distributed task queue machinery using Apache Cassandra

11 lines (10 loc) 346 B
/// <reference types="react" /> interface TasksModalProps { modalType: "Rerun" | "Cancel"; counter: number; onCancelAll: () => void; onRerunAll: () => void; onCloseModal: () => void; } export declare function TasksModal({ modalType, counter, onCancelAll, onRerunAll, onCloseModal, }: TasksModalProps): JSX.Element; export {};