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
/
Link.d.ts
11 lines
(10 loc)
•
238 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{
FC
,
ReactNode
}
from
"react"
;
interface
linkTypes {
children
:
ReactNode
;
to
:
String
;
offset
?:
number
;
duration
?:
number
;
className
?:
String
; }
declare
const
Link
:
FC
<linkTypes>;
export
default
Link
;