ether-admin/node_modules/ant-design-vue/lib/vc-table/stickyScrollBar.d.ts

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;