UNPKG
@tamagutchi/gantt-task-react
Version:
latest (0.6.26)
0.6.26
0.6.25
0.6.24
0.6.23
0.6.22
0.6.21
0.6.20
0.6.19
0.6.18
0.6.17
Gantt Chart
github.com/tamagutchi/gantt-task-react/blob/main/README.md
tamagutchi/gantt-task-react
@tamagutchi/gantt-task-react
/
dist
/
helpers
/
get-childs-and-roots.d.ts
6 lines
(5 loc)
•
279 B
TypeScript
View Raw
1
2
3
4
5
6
import
{
ChildByLevelMap
,
RootMapByLevel
,
TaskOrEmpty
}
from
"../types/public-types"
;
/** *
@param
tasks List of tasks */
export
declare
const
getChildsAndRoots
:
(
tasks
:
readonly
TaskOrEmpty
[],
checkIsRoot
: (task: TaskOrEmpty) =>
boolean
) =>
[
ChildByLevelMap
,
RootMapByLevel
];