planby
Version:
<div align="center" style="margin-bottom: 10px"> <a href="https://www.npmjs.com/package/planby"> <img src="https://i.postimg.cc/J0XMPHNQ/planby-logo.png" alt="Planby logo" /> </a> </div>
19 lines (18 loc) • 667 B
TypeScript
import React from "react";
import { Theme } from "./helpers/interfaces";
interface EpgProps {
ref: React.RefObject<HTMLDivElement>;
width?: number;
height?: number;
isRTL?: boolean;
isSidebar: boolean;
isTimeline?: boolean;
isLoading?: boolean;
children: React.ReactNode;
loader?: React.ReactNode;
theme: Theme;
globalStyles?: string;
sidebarWidth: number;
}
export declare const Epg: ({ children, width, height, sidebarWidth, theme, globalStyles: customGlobalStyles, isRTL, isSidebar, isTimeline, isLoading, loader: LoaderComponent, ref: containerRef, ...rest }: EpgProps) => JSX.Element;
export {};