UNPKG
mscodepl-react-sidebar
Version:
latest (4.14.0)
4.14.0
4.13.0
4.12.7
4.12.6
4.12.5
4.12.4
4.12.3
4.12.2
4.12.1
4.12.0
compitable with react js and next js.
mscodepl/react-sidebar
mscodepl-react-sidebar
/
dist
/
sidebar
/
createReactNavLink.d.ts
8 lines
(7 loc)
•
281 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
React
from
"react"
;
export
interface
iSubMenu {
title
:
string
;
to
:
string
;
icon
:
React
.
ReactNode
; }
export
declare
const
createReactNavLink
:
(
MainNavLink
:
any
,
title
:
string
,
to
:
string
,
icon
:
React
.
ReactNode
,
subMenus
?: iSubMenu[]
) =>
() =>
JSX
.
Element
;