UNPKG

primeng

Version:

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![npm version](https://badge.fury.io/js/primeng.svg)](https://badge.fury.io/js/primeng) [![npm downloads](https://img.shields.io/npm/dm/primeng.sv

19 lines (18 loc) 410 B
export interface TreeNode<T = any> { label?: string; data?: T; icon?: string; expandedIcon?: any; collapsedIcon?: any; children?: TreeNode<T>[]; leaf?: boolean; expanded?: boolean; type?: string; parent?: TreeNode<T>; partialSelected?: boolean; styleClass?: string; draggable?: boolean; droppable?: boolean; selectable?: boolean; key?: string; }