| 17 | } |
| 18 | |
| 19 | export interface RenderablePlugin { |
| 20 | name: string; |
| 21 | description?: string; |
| 22 | path: string; |
| 23 | tags?: string[]; |
| 24 | itemCount: number; |
| 25 | lastUpdated?: string | null; |
| 26 | external?: boolean; |
| 27 | repository?: string | null; |
| 28 | homepage?: string | null; |
| 29 | author?: PluginAuthor | null; |
| 30 | source?: PluginSource | null; |
| 31 | } |
| 32 | |
| 33 | export type PluginSortOption = 'title' | 'lastUpdated'; |
| 34 |
nothing calls this directly
no outgoing calls
no test coverage detected