uni-ticket-system/node_modules/licia/scrollTo.d.ts

14 lines
269 B
TypeScript
Raw Normal View History

2023-12-05 02:11:10 +00:00
import types = require('./types');
declare function scrollTo(
target: Element | string | number,
options: {
tolerance?: number;
duration?: number;
easing?: string | Function;
callback?: types.AnyFn;
}
);
export = scrollTo;