UNPKG
@vnmfify/core
Version:
latest (0.1.0-a37)
0.1.0-a37
0.1.0-a36
0.1.0-a35
0.1.0-a34
0.1.0-a33
0.1.0-a32
0.1.0-a31
0.1.0-a3
0.1.0-a2
0.1.0-a1
```shell npm i @vnmfify/core -S ```
@vnmfify/core
/
sidebar
/
sidebar.context.d.ts
9 lines
(8 loc)
•
301 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
/// <reference types="react" />
import
{
SidebarTabObject
}
from
"./sidebar-tab.shared"
;
interface
SidebarContextProps
{
value
?:
any
; onTabClick?(
tab
:
SidebarTabObject
):
void
; }
declare
const
SidebarContext
:
import
(
"react"
).
Context
<
SidebarContextProps
>;
export
default
SidebarContext
;