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

Method post

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

Source from the content-addressed store, hash-verified

45 return this.request<T>({ ...config, method: "GET" });
46 }
47 post<T = unknown>(config: AxiosRequestConfig): Promise<T> {
48 return this.request<T>({ ...config, method: "POST" });
49 }
50 put<T = unknown>(config: AxiosRequestConfig): Promise<T> {
51 return this.request<T>({ ...config, method: "PUT" });
52 }

Callers 5

signinFunction · 0.80
signupFunction · 0.80
mockTokenExpiredFunction · 0.80
_demo.tsFile · 0.80
_user.tsFile · 0.80

Calls 1

requestMethod · 0.95

Tested by

no test coverage detected