Preparing search index...
The search index is not available
tally-js
tally-js
HttpClient
Interface HttpClient
interface
HttpClient
{
delete
(
url
:
string
)
:
Promise
<
HttpResponse
<
any
>
>
;
get
(
url
:
string
)
:
Promise
<
HttpResponse
<
any
>
>
;
patch
<
T
>
(
url
:
string
,
data
:
T
)
:
Promise
<
HttpResponse
<
any
>
>
;
post
<
T
>
(
url
:
string
,
data
:
T
)
:
Promise
<
HttpResponse
<
any
>
>
;
}
Implemented by
FetchHttpClient
Index
Methods
delete
get
patch
post
Methods
delete
delete
(
url
:
string
)
:
Promise
<
HttpResponse
<
any
>
>
Parameters
url
:
string
Returns
Promise
<
HttpResponse
<
any
>
>
get
get
(
url
:
string
)
:
Promise
<
HttpResponse
<
any
>
>
Parameters
url
:
string
Returns
Promise
<
HttpResponse
<
any
>
>
patch
patch
<
T
>
(
url
:
string
,
data
:
T
)
:
Promise
<
HttpResponse
<
any
>
>
Type Parameters
T
Parameters
url
:
string
data
:
T
Returns
Promise
<
HttpResponse
<
any
>
>
post
post
<
T
>
(
url
:
string
,
data
:
T
)
:
Promise
<
HttpResponse
<
any
>
>
Type Parameters
T
Parameters
url
:
string
data
:
T
Returns
Promise
<
HttpResponse
<
any
>
>
Settings
Member Visibility
Protected
Inherited
External
Theme
OS
Light
Dark
On This Page
Methods
delete
get
patch
post
tally-js
Loading...