Documentation Index
Fetch the complete documentation index at: https://generaltranslation.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Node.js와 브라우저 환경에서 모두 동작하는 범용 HTTP 클라이언트
• new HttpClient(): HttpClient
HttpClient
http-client.ts:43
▸ createHeaders(init?): Headers
새 Headers 인스턴스를 생성합니다
| 이름 | type | |
|---|
init? | Record<string, string> | Headers |
Headers
http-client.ts:99
▸ request(url, options?): Promise<HttpResponse>
HTTP 요청을 보냅니다
Promise<HttpResponse>
정의 위치
http-client.ts:106
▸ get(url, headers?): Promise<HttpResponse>
GET 요청을 보냅니다
| 이름 | type |
|---|
url | string |
headers? | Record<string, string> |
Promise<HttpResponse>
정의 위치
http-client.ts:141
▸ post(url, body?, headers?): Promise<HttpResponse>
POST 요청을 보냅니다
| 이름 | type |
|---|
url | string |
body? | string |
headers? | Record<string, string> |
Promise<HttpResponse>
정의 위치
http-client.ts:151
▸ put(url, body?, headers?): Promise<HttpResponse>
PUT 요청을 수행합니다
| 이름 | type |
|---|
url | string |
body? | string |
headers? | Record<string, string> |
Promise<HttpResponse>
정의 위치
http-client.ts:162
▸ delete(url, headers?): Promise<HttpResponse>
DELETE 요청을 보냅니다
| 이름 | type |
|---|
url | string |
headers? | Record<string, string> |
Promise<HttpResponse>
http-client.ts:173
▸ patch(url, body?, headers?): Promise<HttpResponse>
PATCH 요청을 수행합니다
| 이름 | type |
|---|
url | string |
body? | string |
headers? | Record<string, string> |
Promise<HttpResponse>
http-client.ts:183