UNPKG
angular13-organization-chart
Version:
latest (2.0.1)
2.0.1
2.0.0
1.5.0
1.4.1
1.4.0
1.3.0
1.2.0
1.1.0
Organization chart library for angular 15+
github.com/MuaazH/org-chart
MuaazH/org-chart
angular13-organization-chart
/
src
/
app
/
modules
/
org-chart
/
tree-node.d.ts
8 lines
(7 loc)
•
158 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
export
interface
TreeNode
{
children
:
TreeNode
[];
hideChildren
?:
boolean
;
onClick
?:
() =>
void
;
cssClass
?:
string
;
css
?:
string
; }