UNPKG

hongluan-ui

Version:
9 lines (8 loc) 314 B
import type { ComputedRef, Ref } from 'vue'; import type { ColumnType, ScrollContainer } from '../simple-table'; declare function useScroll(scrollContainer: ScrollContainer, cols: ComputedRef<{ realCols: ColumnType[]; }>, table: Ref<HTMLTableElement>): { scrollClass: Ref<string>; }; export { useScroll };