| 1 | interface IItem { |
| 2 | title: string; |
| 3 | subtitle: string; |
| 4 | valid: boolean; |
| 5 | uid?: string; |
| 6 | arg?: string; |
| 7 | autocomplete?: string; |
| 8 | type?: string; |
| 9 | quicklookurl?: string; |
| 10 | icon?: any; |
| 11 | mods?: any; |
| 12 | text?: string; |
| 13 | } |
| 14 | |
| 15 | class Item { |
| 16 | private uid?: string; |
nothing calls this directly
no outgoing calls
no test coverage detected