@wamra/gantt-task-react
Version:
Interactive Gantt Chart for React with TypeScript
15 lines (14 loc) • 435 B
TypeScript
import React from 'react';
import { TaskOutOfParentWarnings } from '../../types/public-types';
type TaskWarningProps = {
rtl: boolean;
outOfParentWarnings?: TaskOutOfParentWarnings;
hasDependencyWarning: boolean;
taskWarningOffset: number;
taskHalfHeight: number;
taskYOffset: number;
x1: number;
x2: number;
};
export declare const TaskWarning: React.NamedExoticComponent<TaskWarningProps>;
export {};