(private readonly snack: SnackReporter)
| 9 | public onDelete: () => void = () => {}; |
| 10 | |
| 11 | public constructor(private readonly snack: SnackReporter) { |
| 12 | super(); |
| 13 | } |
| 14 | |
| 15 | public requestConfig = (id: number): Promise<string> => |
| 16 | axios.get(`${config.get('url')}plugin/${id}/config`).then((response) => response.data); |
nothing calls this directly
no outgoing calls
no test coverage detected