stickyScrollBar.d.ts 685 B

123456789101112131415
  1. import type { Ref } from 'vue';
  2. interface StickyScrollBarProps {
  3. scrollBodyRef: Ref<HTMLElement>;
  4. onScroll: (params: {
  5. scrollLeft?: number;
  6. }) => void;
  7. offsetScroll: number;
  8. container: HTMLElement | Window;
  9. scrollBodySizeInfo: {
  10. scrollWidth: number;
  11. clientWidth: number;
  12. };
  13. }
  14. 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>;
  15. export default _default;