UNPKG
scroller-motion
Version:
latest (1.2.3)
1.2.3
1.2.2
1.2.1
1.2.0
1.1.1
1.1.0
1.0.0
0.0.2
0.0.1-beta.3
0.0.1-beta.2
0.0.1-beta.0
🛹 Elegant motion scrolling for React
scroller-motion.js.org
breadadams/scroller-motion
scroller-motion
/
dist
/
hooks
/
useCore
/
useSpringScroll.d.ts
6 lines
(5 loc)
•
189 B
TypeScript
View Raw
1
2
3
4
5
6
import
{
MotionValue
,
SpringProp
}
from
'../../types'
;
export
declare
const
useSpringScroll
:
(
springConfig
:
SpringProp
) =>
{
x
:
MotionValue
<
number
>;
y
:
MotionValue
<
number
>; };