UNPKG
timeline-calendar-react
Version:
alpha.1 (0.0.1-alpha.1)
alpha.2 (0.0.1-alpha.2)
alpha.3 (0.0.1-alpha.3)
alpha.4 (0.0.1-alpha.4)
beta.1 (0.0.2-beta.1)
latest (0.0.5)
0.0.5
0.0.4
0.0.3
0.0.2
0.0.2-beta.1
0.0.1-alpha.4
0.0.1-alpha.3
0.0.1-alpha.2
0.0.1-alpha.1
0.0.1-alpha.0
A timeline calendar component for React, built with TypeScript and Vite.
timeline-calendar-react
/
dist
/
src
/
components
/
Select
/
context
/
SelectContextDefinition.d.ts
7 lines
(6 loc)
•
208 B
TypeScript
View Raw
1
2
3
4
5
6
7
type
SelectContextType
= {
activeSelectId
:
string
|
null
;
setActiveSelectId
:
(
id
:
string
|
null
) =>
void
; };
export
declare
const
SelectContext
:
import
(
'react'
).
Context
<
SelectContextType
>;
export
{};