| 15 | } |
| 16 | |
| 17 | export interface IPlugin { |
| 18 | id: string; |
| 19 | enabled: boolean; |
| 20 | beta: boolean; |
| 21 | deprecated?: boolean; |
| 22 | version: { |
| 23 | latest: string; |
| 24 | installed: string; |
| 25 | }; |
| 26 | description: string; |
| 27 | install: string; |
| 28 | formfields: { [key: string]: IPluginFormFields }; |
| 29 | //crd: KubernetesObject, |
| 30 | resourceDefinitions: any; |
| 31 | artifact_url: string; |
| 32 | } |
nothing calls this directly
no outgoing calls
no test coverage detected