MCPcopy
hub / github.com/d3george/slash-admin / delete

Method delete

src/api/apiClient.ts:53–55  ·  view source on GitHub ↗
(config: AxiosRequestConfig)

Source from the content-addressed store, hash-verified

51 return this.request<T>({ ...config, method: "PUT" });
52 }
53 delete<T = unknown>(config: AxiosRequestConfig): Promise<T> {
54 return this.request<T>({ ...config, method: "DELETE" });
55 }
56 request<T = unknown>(config: AxiosRequestConfig): Promise<T> {
57 return axiosInstance.request<any, T>(config);
58 }

Callers 2

passthroughFunction · 0.80

Calls 1

requestMethod · 0.95

Tested by

no test coverage detected