(
url: string,
options: Omit<HttpRequestOptions, 'method'> = {}
)
| 146 | * GET 请求 |
| 147 | */ |
| 148 | export function httpGet( |
| 149 | url: string, |
| 150 | options: Omit<HttpRequestOptions, 'method'> = {} |
| 151 | ): Promise<HttpResponse> { |
| 152 | return httpRequest(url, { ...options, method: 'GET' }) |
| 153 | } |
| 154 | |
| 155 | /** |
| 156 | * POST 请求 |
no test coverage detected