Skip to main content
Unlisted page
This page is unlisted. Search engines will not index it, and only users having a direct link can access it.
Version: v1.10

HttpRequestFunc()

HttpRequestFunc = (url, config?) => Promise<any>

Defined in: types.ts:558

Generic HTTP request function type. Args: url: string - The URL to request. config?: Record<string, any> - Optional request configuration (e.g., method, headers, body for POST). Returns: Promise<any> - The response data.

Parameters​

ParameterType
urlstring
config?Record<string, any>

Returns​

Promise<any>