@react-av/editor
Version:
Editor Timeline Components built on React AV.
6 lines (5 loc) • 353 B
TypeScript
import React, { ComponentPropsWithoutRef, RefAttributes } from "react";
export type TimelineOverflowContainerProps = ComponentPropsWithoutRef<'div'> & {
componentRole?: "timeline-header" | "timeline";
};
export declare const TimelineOverflowContainer: React.ForwardRefExoticComponent<TimelineOverflowContainerProps & RefAttributes<HTMLDivElement>>;