useScrollTo.d.ts 404 B

1234
  1. import type { ShallowRef, Ref } from 'vue';
  2. import type { GetKey } from '../interface';
  3. import type { CacheMap } from './useHeights';
  4. 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;