MCPcopy
hub / github.com/continuedev/continue / del

Function del

extensions/cli/src/util/apiClient.ts:167–172  ·  view source on GitHub ↗
(
  endpoint: string,
  headers?: Record<string, string>,
)

Source from the content-addressed store, hash-verified

165 * Convenience function for DELETE requests
166 */
167export async function del<T = any>(
168 endpoint: string,
169 headers?: Record<string, string>,
170): Promise<ApiResponse<T>> {
171 return makeAuthenticatedRequest<T>(endpoint, { method: "DELETE", headers });
172}

Callers 1

apiClient.test.tsFile · 0.85

Calls 1

makeAuthenticatedRequestFunction · 0.85

Tested by

no test coverage detected