zhangyong
2023-08-22 1353e87cb21a4032d585d7404bae9042f2ebcf08
1
2
3
4
5
6
7
8
export declare const isScroll: (el: HTMLElement, isVertical?: boolean | undefined) => boolean;
export declare const getScrollContainer: (el: HTMLElement, isVertical?: boolean | undefined) => Window | HTMLElement | undefined;
export declare const getScrollBarWidth: (namespace: string) => number;
/**
 * Scroll with in the container element, positioning the **selected** element at the top
 * of the container
 */
export declare function scrollIntoView(container: HTMLElement, selected: HTMLElement): void;