UNPKG

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>

13 lines (12 loc) 349 B
import { DateTime } from "../helpers/types"; interface useLineProps { startDate: DateTime; endDate: DateTime; dayWidth: number; hourWidth: number; sidebarWidth: number; } export declare function useLine({ startDate, endDate, dayWidth, hourWidth, sidebarWidth, }: useLineProps): { positionX: number; }; export {};