EASYAIuniappNewUI/node_modules/licia/scrollTo.d.ts
2025-02-08 18:50:38 +08:00

14 lines
269 B
TypeScript

import types = require('./types');
declare function scrollTo(
target: Element | string | number,
options: {
tolerance?: number;
duration?: number;
easing?: string | Function;
callback?: types.AnyFn;
}
);
export = scrollTo;