UNPKG

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

Version:

.NET library implementing distributed task queue machinery using Apache Cassandra

19 lines (18 loc) 597 B
import { ComponentType, ReactElement, Component } from "react"; import { TimeLineCycledProps } from "./TimeLineCycled"; interface TimeLineProps { children?: any; } export declare class TimeLine extends Component<TimeLineProps> { static Branch: ComponentType<TimeLineProps>; static BranchNode: ComponentType<TimeLineProps>; static Entry: ComponentType<TimeLineEntryProps>; static Cycled: ComponentType<TimeLineCycledProps>; render(): ReactElement; } interface TimeLineEntryProps { children?: React.ReactNode; icon: ReactElement; iconColor?: string; } export {};