diff --git a/docs/api/functions/request.md b/docs/api/functions/request.md index 60761b7f..f52f4e5c 100644 --- a/docs/api/functions/request.md +++ b/docs/api/functions/request.md @@ -12,3 +12,12 @@ Returns the text value of the response. | Parameter | Description | |-----------|-------------| | `request` | | + +```ts +type RequestUrlParam = { + url: string, + method: 'POST'|'GET', + body: string, + contentType: string //'application/json' +} +```