@bigbinary/react-timeline-editor
Version:
[](https://www.npmjs.com/package/@bigbinary/react-timeline-editor) [ • 387 B
TypeScript
import React from 'react';
import "./hover_ghost.less";
import { TimelineRow } from '@/interface/action';
export type HoverGhostProps = {
styles?: React.CSSProperties;
getGhostRender?: (row: TimelineRow) => React.ReactNode;
row: TimelineRow;
};
export declare const HoverGhost: React.ForwardRefExoticComponent<HoverGhostProps & React.RefAttributes<HTMLDivElement>>;