UNPKG

@primer/behaviors

Version:

Shared behaviors for JavaScript components

8 lines (7 loc) 332 B
export interface ScrollIntoViewOptions { direction?: 'horizontal' | 'vertical'; startMargin?: number; endMargin?: number; behavior?: ScrollBehavior; } export declare function scrollIntoView(child: HTMLElement, viewingArea: HTMLElement, { direction, startMargin, endMargin, behavior }?: ScrollIntoViewOptions): void;