MCPcopy Index your code
hub / github.com/codeaashu/claude-code / delete

Method delete

web/lib/api/client.ts:242–248  ·  view source on GitHub ↗
(path: string, opts?: RequestOptions)

Source from the content-addressed store, hash-verified

240 }
241
242 async delete(path: string, opts?: RequestOptions): Promise<void> {
243 const res = await this.request(path, {
244 method: "DELETE",
245 signal: opts?.signal,
246 });
247 if (!res.ok) throw await toApiError(res);
248 }
249
250 /**
251 * POST that returns the raw Response (for streaming). Timeout is disabled

Callers

nothing calls this directly

Calls 2

requestMethod · 0.95
toApiErrorFunction · 0.85

Tested by

no test coverage detected