UNPKG
@jnoodle/rc-picker
Version:
latest (2.0.10)
2.0.10
2.0.9
2.0.8
2.0.7
1.15.3
1.15.2
1.15.1
React date & time picker
jnoodle.github.io/picker
jnoodle/picker
@jnoodle/rc-picker
/
lib
/
panels
/
WeekPanel
/
index.d.ts
6 lines
(5 loc)
•
269 B
TypeScript
View Raw
1
2
3
4
5
6
/// <reference types="react" />
import
{
PanelSharedProps
}
from
'../../interface'
;
export
declare
type
WeekPanelProps
<
DateType
> =
PanelSharedProps
<
DateType
>;
declare
function
WeekPanel
<
DateType
>(
props
:
WeekPanelProps
<
DateType
>):
JSX
.
Element
;
export
default
WeekPanel
;