UNPKG
@raralabs/react-patro
Version:
latest (1.0.1)
1.0.1
1.0.0
AD and BS Calendar functions as hooks and component
raralabs/react-patro
@raralabs/react-patro
/
dist
/
NepaliDateRangePicker.d.ts
10 lines
(9 loc)
•
261 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
React
from
"react"
;
interface
RangePickerTypes
{
value
:
string
;
size
:
"large"
|
"small"
;
separator
:
" "
|
"-"
|
"/"
;
calendarType
:
"AD"
|
"BS"
; }
declare
const
RangePicker
:
React
.
FC
<
RangePickerTypes
>;
export
default
RangePicker
;