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>
16 lines (15 loc) • 481 B
TypeScript
import * as React from "react";
import { ChannelWithPosition } from "../helpers/types";
interface ChannelsProps {
isTimeline: boolean;
isRTL: boolean;
isChannelVisible: (position: any) => boolean;
channels: ChannelWithPosition[];
scrollY: number;
sidebarWidth: number;
renderChannel?: (v: {
channel: ChannelWithPosition;
}) => React.ReactNode;
}
export declare function Channels(props: ChannelsProps): JSX.Element;
export {};