| 18 | } |
| 19 | |
| 20 | export interface IPlugin { |
| 21 | id: number; |
| 22 | token: string; |
| 23 | name: string; |
| 24 | modulePath: string; |
| 25 | enabled: boolean; |
| 26 | author?: string; |
| 27 | website?: string; |
| 28 | license?: string; |
| 29 | capabilities: Array<'webhooker' | 'displayer' | 'configurer' | 'messenger' | 'storager'>; |
| 30 | } |
| 31 | |
| 32 | export interface IMessage { |
| 33 | id: number; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…