16 lines
685 B
TypeScript
16 lines
685 B
TypeScript
import type { Ref } from 'vue';
|
|
interface StickyScrollBarProps {
|
|
scrollBodyRef: Ref<HTMLElement>;
|
|
onScroll: (params: {
|
|
scrollLeft?: number;
|
|
}) => void;
|
|
offsetScroll: number;
|
|
container: HTMLElement | Window;
|
|
scrollBodySizeInfo: {
|
|
scrollWidth: number;
|
|
clientWidth: number;
|
|
};
|
|
}
|
|
declare const _default: import("vue").DefineComponent<StickyScrollBarProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<StickyScrollBarProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
export default _default;
|