UNPKG

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

Version:

.NET library implementing distributed task queue machinery using Apache Cassandra

10 lines (9 loc) 399 B
/// <reference types="react" /> import { Theme } from "@skbkontur/react-ui/lib/theming/Theme"; import { TaskState } from "../../Domain/Api/TaskState"; interface TaskStateIconProps { taskState: TaskState; } export declare const getIconColor: (theme: Theme, severity: string) => string | undefined; export declare function TaskStateIcon({ taskState }: TaskStateIconProps): JSX.Element; export {};