UNPKG

@aplus-frontend/antdv

Version:

Vue basic component library maintained based on ant-design-vue

5 lines (4 loc) 404 B
import type { ShallowRef, Ref } from 'vue'; import type { GetKey } from '../interface'; import type { CacheMap } from './useHeights'; export default function useScrollTo(containerRef: Ref<Element | undefined>, mergedData: ShallowRef<any[]>, heights: CacheMap, props: any, getKey: GetKey, collectHeight: () => void, syncScrollTop: (newTop: number) => void, triggerFlash: () => void): (arg?: any) => void;