UNPKG

antd-hz

Version:

华卓科技基于 antd 5.0 定制的组件库

11 lines (10 loc) 351 B
interface ScrollToOptions { /** Scroll container, default as window */ getContainer?: () => HTMLElement | Window | Document; /** Scroll end callback */ callback?: () => void; /** Animation duration, default as 450 */ duration?: number; } export default function scrollTo(y: number, options?: ScrollToOptions): void; export {};