MCPcopy Create free account
hub / github.com/damms005/devdb-vscode / delete

Method delete

src/services/http-client.ts:170–180  ·  view source on GitHub ↗
(
    url: string,
    headers: Record<string, string> = {},
    retry?: RetryConfig
  )

Source from the content-addressed store, hash-verified

168 }
169
170 async delete<T = any>(
171 url: string,
172 headers: Record<string, string> = {},
173 retry?: RetryConfig
174 ): Promise<HttpResponse<T>> {
175 return makeRequestWithRetry<T>(url, {
176 method: 'DELETE',
177 headers,
178 retry: retry || this.defaultRetryConfig
179 });
180 }
181}
182
183export const httpClient = new HttpClient();

Callers 3

handleIncomingMessageFunction · 0.45
deleteCredentialMethod · 0.45
removeLicenseMethod · 0.45

Calls 1

makeRequestWithRetryFunction · 0.85

Tested by

no test coverage detected