UNPKG
@josmangarsal/pragmatic-scheduler
Version:
latest (1.6.4)
1.6.4
1.6.2
1.6.1
1.5.4
1.4.2
React resource scheduler
paul-orchid.github.io/pragmatic-scheduler
paul-orchid/pragmatic-scheduler
@josmangarsal/pragmatic-scheduler
/
dist
/
hooks
/
useDivisionDetailsGenerator.d.ts
8 lines
(7 loc)
•
270 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
DivisionDetail
}
from
'../types'
;
export
declare
const
useDivisionDetailsGenerator
:
(
intervalIncrement
:
number
, { startDate, endDate }: { startDate?:
Date
|
undefined
; endDate?:
Date
|
undefined
; }
) =>
{
divisionDetails
:
DivisionDetail
[]; };