UNPKG

@hypothesis/frontend-shared

Version:

Shared components, styles and utilities for Hypothesis projects

7 lines (6 loc) 219 B
import type { RefObject } from 'preact'; export type ScrollInfo = { scrollRef: RefObject<HTMLElement | undefined>; }; declare const ScrollContext: import("preact").Context<ScrollInfo>; export default ScrollContext;