From b5a366a8665bee69d4c18f9fe8b82774551bd8c9 Mon Sep 17 00:00:00 2001 From: zsviczian Date: Wed, 9 Mar 2022 22:03:09 +0100 Subject: [PATCH] Update request.md --- docs/api/functions/request.md | 9 +++++++++ 1 file changed, 9 insertions(+) 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' +} +```