nessprim-planby-pro/dist/Epg/components/Channels.d.ts
2024-08-04 16:14:27 -06:00

18 lines
615 B
TypeScript

import * as React from "react";
import { ChannelItem, ChannelWithPosition } from "../helpers/types";
interface ChannelsProps {
isVerticalMode: boolean;
isTimeline: boolean;
isRTL: boolean;
isChannelVisible: (position: any) => boolean;
channels: ChannelWithPosition[];
contentHeight: number;
sidebarWidth: number;
timelineHeight: number;
scrollY: number;
openChannelGroupTree: (data: ChannelWithPosition) => void;
renderChannel?: (v: ChannelItem) => React.ReactNode;
}
export declare function Channels(props: ChannelsProps): React.JSX.Element;
export {};