@aplus-frontend/ui
Version:
7 lines (6 loc) • 304 B
TypeScript
import { ScrollBarExpose } from '../../scroll-bar';
import { Ref, ComputedRef } from 'vue';
export declare const useStickyScroll: (tableWrapper: Ref<HTMLElement | undefined>) => {
isStickyMode: ComputedRef<boolean>;
scrollBarRef: Ref<ScrollBarExpose | undefined, ScrollBarExpose | undefined>;
};