| 2 | import { SplitterOrientation } from 'ng-devui/splitter'; |
| 3 | |
| 4 | interface IMenuType { |
| 5 | title: string; |
| 6 | active: boolean; |
| 7 | children?: Array<{ |
| 8 | title: string; |
| 9 | active: boolean; |
| 10 | }>; |
| 11 | icon?: string; |
| 12 | } |
| 13 | |
| 14 | @Component({ |
| 15 | selector: 'd-splitter-demo-shrink', |
nothing calls this directly
no outgoing calls
no test coverage detected