Last change
on this file since bdd6491 was 59329aa, checked in by Ema <ema_spirova@…>, 3 years ago |
adding photos
|
-
Property mode
set to
100644
|
File size:
410 bytes
|
Rev | Line | |
---|
[59329aa] | 1 | export interface TreeNode<T = any> {
|
---|
| 2 | label?: string;
|
---|
| 3 | data?: T;
|
---|
| 4 | icon?: string;
|
---|
| 5 | expandedIcon?: any;
|
---|
| 6 | collapsedIcon?: any;
|
---|
| 7 | children?: TreeNode<T>[];
|
---|
| 8 | leaf?: boolean;
|
---|
| 9 | expanded?: boolean;
|
---|
| 10 | type?: string;
|
---|
| 11 | parent?: TreeNode<T>;
|
---|
| 12 | partialSelected?: boolean;
|
---|
| 13 | styleClass?: string;
|
---|
| 14 | draggable?: boolean;
|
---|
| 15 | droppable?: boolean;
|
---|
| 16 | selectable?: boolean;
|
---|
| 17 | key?: string;
|
---|
| 18 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.