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

16 lines
712 B
TypeScript

import { ChannelWithPosition } from "./types";
export declare const getChannelVerticalPosition: (channel: ChannelWithPosition, isVerticalMode: boolean) => ChannelWithPosition;
export declare const getChannelGroupTreeProps: (channel: ChannelWithPosition) => {
nestedChildren: string[] | undefined;
isFirstNestedChild: boolean;
isLastNestedChild: boolean;
isOpened?: boolean | undefined;
uuid: string;
logo: string;
groupTree?: boolean | undefined;
parentChannelUuid?: string | undefined;
isNestedChild: boolean;
position: Pick<import("./types").Position, "top" | "height"> & Partial<Pick<import("./types").Position, "left" | "width">>;
index: number;
};