@skbkontur/cassandra-distributed-task-queue-ui
Version:
.NET library implementing distributed task queue machinery using Apache Cassandra
19 lines (18 loc) • 588 B
TypeScript
import React from "react";
import { TimeLineCycledProps } from "./TimeLineCycled";
interface TimeLineProps {
children?: any;
}
export declare class TimeLine extends React.Component<TimeLineProps> {
static Branch: React.ComponentType<TimeLineProps>;
static BranchNode: React.ComponentType<TimeLineProps>;
static Entry: React.ComponentType<TimeLineEntryProps>;
static Cycled: React.ComponentType<TimeLineCycledProps>;
render(): JSX.Element;
}
interface TimeLineEntryProps {
children?: React.ReactNode;
icon: JSX.Element;
iconColor?: string;
}
export {};