syncroScroll.d.ts 195 B

123
  1. declare type scrollingDirection = "v" | "h" | "vh" | "hv";
  2. export default function syncronizeElementsScrolling(elements: Array<HTMLBaseElement>, direction?: scrollingDirection): void;
  3. export {};