UNPKG
next-scroll
Version:
latest (1.3.3)
1.3.3
1.3.2
1.3.1
1.3.0
1.2.2
1.2.1
1.2.0
1.1.2
1.1.1
1.1.0
1.0.10
0.0.10
0.0.9
0.0.8
0.0.6
0.0.5
0.0.4
Scroll postion gives you ability the manipulate scroll
AliMuhammadfc5/next-scroll
next-scroll
/
dist
/
cjs
/
components
/
scrollto.d.ts
7 lines
(6 loc)
•
192 B
TypeScript
View Raw
1
2
3
4
5
6
7
interface
scrollToTypes {
target
:
"top"
|
"bottom"
|
number
;
duration
?:
number
; }
declare
const
scrollTo
:
(
{ target, duration }: scrollToTypes
) =>
void
;
export
default
scrollTo;