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>
9 lines (8 loc) • 326 B
TypeScript
/// <reference types="react" />
import { ChannelWithPosition } from "../helpers/types";
interface ChannelProps<T> {
channel: T;
onClick?: (v: ChannelWithPosition) => void;
}
export declare function Channel<T extends ChannelWithPosition>({ channel, onClick, ...rest }: ChannelProps<T>): JSX.Element;
export {};