( target: TargetShape, identity: Identity, path: string, )
| 195 | ); |
| 196 | |
| 197 | const deletePath = ( |
| 198 | target: TargetShape, |
| 199 | identity: Identity, |
| 200 | path: string, |
| 201 | ): Promise<{ readonly body: { readonly removed?: boolean }; readonly text: string }> => |
| 202 | request(target, identity, path, { method: "DELETE" }); |
| 203 | |
| 204 | const execute = (target: TargetShape, identity: Identity, code: string): Promise<ExecuteResponse> => |
| 205 | postJson<ExecuteResponse>(target, identity, "/api/executions", { |
no test coverage detected