@balkangraph/orgchart.js 8.4.11 → 8.4.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/orgchart.d.ts CHANGED
@@ -626,8 +626,10 @@ declare class OrgChart extends OrgChartBase {
626
626
  * @param node
627
627
  * @param count
628
628
  */
629
- static childrenCount(chart: OrgChart, node: OrgChart.node, count?: number): number;
630
- static collapsedChildrenCount(chart: OrgChart, node: OrgChart.node, count?: number): number;
629
+ static childrenCount(chart: OrgChart, node: OrgChart.node): number;
630
+ static childrenTotalCount(chart: OrgChart, node: OrgChart.node): number;
631
+ static collapsedChildrenCount(chart: OrgChart, node: OrgChart.node): number;
632
+ static collapsedChildrenTotalCount(chart: OrgChart, node: OrgChart.node): number;
631
633
  static getRootOf(node: OrgChart.node): OrgChart.node;
632
634
 
633
635
  /**