blob: 535d7ea522e780ec9bc50ff52db5834d6ec4175e (
plain)
1
2
3
4
5
6
7
8
9
10
|
import {Component, Input} from '@angular/core';
@Component({
selector: 'tree-node-header-properties',
templateUrl: './tree-node-header-properties.component.html',
styleUrls: ['./tree-node-header-properties.component.scss']
})
export class TreeNodeHeaderPropertiesComponent {
@Input() properties : object[] = [];
}
|