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

Method get

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

Source from the content-addressed store, hash-verified

42
43class APIClient {
44 get<T = unknown>(config: AxiosRequestConfig): Promise<T> {
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 }

Callers 10

resolveMainClientFunction · 0.80
passthroughFunction · 0.80
convertFlatToTreeFunction · 0.80
ComponentFunction · 0.80
logoutFunction · 0.80
findByIdFunction · 0.80
getMenuListFunction · 0.80
_user.tsFile · 0.80
_menu.tsFile · 0.80

Calls 1

requestMethod · 0.95

Tested by

no test coverage detected