antdv-eoi
Version:
An enterprise-class UI design language and Vue-based implementation
5 lines (4 loc) • 402 B
TypeScript
import type { Data } from '../../_util/type';
import type { ComputedRef, Ref } from 'vue';
import type { GetKey } from '../interface';
export default function useScrollTo(containerRef: Ref<Element | undefined>, mergedData: ComputedRef<any[]>, heights: Data, props: any, getKey: GetKey, collectHeight: () => void, syncScrollTop: (newTop: number) => void, triggerFlash: () => void): (arg?: any) => void;