(name: string, content: string)
| 313 | } |
| 314 | |
| 315 | export async function savePlugin(name: string, content: string): Promise<void> { |
| 316 | await api.post(`/plugins/${name}`, { content }); |
| 317 | } |
| 318 | |
| 319 | export async function deletePlugin(name: string): Promise<void> { |
| 320 | await api.delete(`/plugins/${name}`); |
no outgoing calls
no test coverage detected