| 38 | } |
| 39 | |
| 40 | interface Plugin extends RenderablePlugin { |
| 41 | id: string; |
| 42 | name: string; |
| 43 | path: string; |
| 44 | tags?: string[]; |
| 45 | itemCount: number; |
| 46 | items?: PluginItem[]; |
| 47 | external?: boolean; |
| 48 | repository?: string | null; |
| 49 | homepage?: string | null; |
| 50 | author?: PluginAuthor | null; |
| 51 | license?: string | null; |
| 52 | source?: PluginSource | null; |
| 53 | } |
| 54 | |
| 55 | interface PluginsData { |
| 56 | items: Plugin[]; |
nothing calls this directly
no outgoing calls
no test coverage detected